home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / gg / ncurses-5.3.lha / ncurses-5.3 / form / frm_driver.c < prev    next >
C/C++ Source or Header  |  2002-10-24  |  134KB  |  3,859 lines

  1. /****************************************************************************
  2.  * Copyright (c) 1998,2000 Free Software Foundation, Inc.                   *
  3.  *                                                                          *
  4.  * Permission is hereby granted, free of charge, to any person obtaining a  *
  5.  * copy of this software and associated documentation files (the            *
  6.  * "Software"), to deal in the Software without restriction, including      *
  7.  * without limitation the rights to use, copy, modify, merge, publish,      *
  8.  * distribute, distribute with modifications, sublicense, and/or sell       *
  9.  * copies of the Software, and to permit persons to whom the Software is    *
  10.  * furnished to do so, subject to the following conditions:                 *
  11.  *                                                                          *
  12.  * The above copyright notice and this permission notice shall be included  *
  13.  * in all copies or substantial portions of the Software.                   *
  14.  *                                                                          *
  15.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
  16.  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
  17.  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
  18.  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
  19.  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
  20.  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
  21.  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
  22.  *                                                                          *
  23.  * Except as contained in this notice, the name(s) of the above copyright   *
  24.  * holders shall not be used in advertising or otherwise to promote the     *
  25.  * sale, use or other dealings in this Software without prior written       *
  26.  * authorization.                                                           *
  27.  ****************************************************************************/
  28.  
  29. /****************************************************************************
  30.  *   Author:  Juergen Pfeifer, 1995,1997                                    *
  31.  *   Contact: http://www.familiepfeifer.de/Contact.aspx?Lang=en             *
  32.  ****************************************************************************/
  33. #include "form.priv.h"
  34.  
  35. MODULE_ID("$Id: frm_driver.c,v 1.39 2002/07/06 15:33:27 juergen Exp $")
  36.  
  37. /*----------------------------------------------------------------------------
  38.   This is the core module of the form library. It contains the majority
  39.   of the driver routines as well as the form_driver function. 
  40.  
  41.   Essentially this module is nearly the whole library. This is because
  42.   all the functions in this module depends on some others in the module,
  43.   so it makes no sense to split them into separate files because they
  44.   will always be linked together. The only acceptable concern is turnaround
  45.   time for this module, but now we have all Pentiums or Riscs, so what!
  46.  
  47.   The driver routines are grouped into nine generic categories:
  48.  
  49.    a)   Page Navigation            ( all functions prefixed by PN_ )
  50.         The current page of the form is left and some new page is
  51.         entered.
  52.    b)   Inter-Field Navigation     ( all functions prefixed by FN_ )
  53.         The current field of the form is left and some new field is
  54.         entered.
  55.    c)   Intra-Field Navigation     ( all functions prefixed by IFN_ )
  56.         The current position in the current field is changed. 
  57.    d)   Vertical Scrolling         ( all functions prefixed by VSC_ )
  58.         Esseantially this is a specialization of Intra-Field navigation.
  59.         It has to check for a multi-line field.
  60.    e)   Horizontal Scrolling       ( all functions prefixed by HSC_ )
  61.         Esseantially this is a specialization of Intra-Field navigation.
  62.         It has to check for a single-line field.
  63.    f)   Field Editing              ( all functions prefixed by FE_ )
  64.         The content of the current field is changed
  65.    g)   Edit Mode requests         ( all functions prefixed by EM_ )
  66.         Switching between insert and overlay mode
  67.    h)   Field-Validation requests  ( all functions prefixed by FV_ )
  68.         Perform verifications of the field.
  69.    i)   Choice requests            ( all functions prefixed by CR_ )
  70.         Requests to enumerate possible field values
  71.   --------------------------------------------------------------------------*/
  72.  
  73. /*----------------------------------------------------------------------------
  74.   Some remarks on the placements of assert() macros :
  75.   I use them only on "strategic" places, i.e. top level entries where
  76.   I want to make sure that things are set correctly. Throughout subordinate
  77.   routines I omit them mostly.
  78.   --------------------------------------------------------------------------*/
  79.  
  80. /*
  81. Some options that may effect compatibility in behavior to SVr4 forms,
  82. but they are here to allow a more intuitive and user friendly behaviour of
  83. our form implementation. This doesn't affect the API, so we feel it is
  84. uncritical.
  85.  
  86. The initial implementation tries to stay very close with the behaviour
  87. of the original SVr4 implementation, although in some areas it is quite
  88. clear that this isn't the most appropriate way. As far as possible this
  89. sources will allow you to build a forms lib that behaves quite similar
  90. to SVr4, but now and in the future we will give you better options. 
  91. Perhaps at some time we will make this configurable at runtime.
  92. */
  93.  
  94. /* Implement a more user-friendly previous/next word behaviour */
  95. #define FRIENDLY_PREV_NEXT_WORD (1)
  96. /* Fix the wrong behaviour for forms with all fields inactive */
  97. #define FIX_FORM_INACTIVE_BUG (1)
  98. /* Allow dynamic field growth also when navigating past the end */
  99. #define GROW_IF_NAVIGATE (1)
  100.  
  101. /*----------------------------------------------------------------------------
  102.   Forward references to some internally used static functions
  103.   --------------------------------------------------------------------------*/
  104. static int Inter_Field_Navigation ( int (* const fct) (FORM *), FORM * form );
  105. static int FN_Next_Field (FORM * form);
  106. static int FN_Previous_Field (FORM * form);
  107. static int FE_New_Line(FORM *);
  108. static int FE_Delete_Previous(FORM *);
  109.  
  110. /*----------------------------------------------------------------------------
  111.   Macro Definitions.
  112.  
  113.   Some Remarks on that: I use the convention to use UPPERCASE for constants
  114.   defined by Macros. If I provide a macro as a kind of inline routine to
  115.   provide some logic, I use my Upper_Lower case style.
  116.   --------------------------------------------------------------------------*/
  117.  
  118. /* Calculate the position of a single row in a field buffer */
  119. #define Position_Of_Row_In_Buffer(field,row) ((row)*(field)->dcols)
  120.  
  121. /* Calculate start address for the fields buffer# N */
  122. #define Address_Of_Nth_Buffer(field,N) \
  123.   ((field)->buf + (N)*(1+Buffer_Length(field)))
  124.  
  125. /* Calculate the start address of the row in the fields specified buffer# N */
  126. #define Address_Of_Row_In_Nth_Buffer(field,N,row) \
  127.   (Address_Of_Nth_Buffer(field,N) + Position_Of_Row_In_Buffer(field,row))
  128.  
  129. /* Calculate the start address of the row in the fields primary buffer */
  130. #define Address_Of_Row_In_Buffer(field,row) \
  131.   Address_Of_Row_In_Nth_Buffer(field,0,row)
  132.  
  133. /* Calculate the start address of the row in the forms current field
  134.    buffer# N */
  135. #define Address_Of_Current_Row_In_Nth_Buffer(form,N) \
  136.    Address_Of_Row_In_Nth_Buffer((form)->current,N,(form)->currow)
  137.  
  138. /* Calculate the start address of the row in the forms current field
  139.    primary buffer */
  140. #define Address_Of_Current_Row_In_Buffer(form) \
  141.    Address_Of_Current_Row_In_Nth_Buffer(form,0)
  142.  
  143. /* Calculate the address of the cursor in the forms current field
  144.    primary buffer */
  145. #define Address_Of_Current_Position_In_Nth_Buffer(form,N) \
  146.    (Address_Of_Current_Row_In_Nth_Buffer(form,N) + (form)->curcol)
  147.  
  148. /* Calculate the address of the cursor in the forms current field
  149.    buffer# N */
  150. #define Address_Of_Current_Position_In_Buffer(form) \
  151.   Address_Of_Current_Position_In_Nth_Buffer(form,0)
  152.  
  153. /* Logic to decide wether or not a field is actually a field with
  154.    vertical or horizontal scrolling */
  155. #define Is_Scroll_Field(field)          \
  156.    (((field)->drows > (field)->rows) || \
  157.     ((field)->dcols > (field)->cols))
  158.  
  159. /* Logic to decide whether or not a field needs to have an individual window
  160.    instead of a derived window because it contains invisible parts.
  161.    This is true for non-public fields and for scrollable fields. */
  162. #define Has_Invisible_Parts(field)     \
  163.   (!((field)->opts & O_PUBLIC)      || \
  164.    Is_Scroll_Field(field))
  165.  
  166. /* Logic to decide whether or not a field needs justification */
  167. #define Justification_Allowed(field)        \
  168.    (((field)->just != NO_JUSTIFICATION)  && \
  169.     (Single_Line_Field(field))           && \
  170.     (((field)->dcols == (field)->cols)   && \
  171.     ((field)->opts & O_STATIC))             )
  172.  
  173. /* Logic to determine whether or not a dynamic field may still grow */
  174. #define Growable(field) ((field)->status & _MAY_GROW)
  175.  
  176. /* Macro to set the attributes for a fields window */
  177. #define Set_Field_Window_Attributes(field,win) \
  178. (  wbkgdset((win),(chtype)((field)->pad | (field)->back)), \
  179.    wattrset((win),(field)->fore) )
  180.  
  181. /* Logic to decide whether or not a field really appears on the form */
  182. #define Field_Really_Appears(field)         \
  183.   ((field->form)                          &&\
  184.    (field->form->status & _POSTED)        &&\
  185.    (field->opts & O_VISIBLE)              &&\
  186.    (field->page == field->form->curpage))
  187.  
  188. /* Logic to determine whether or not we are on the first position in the
  189.    current field */
  190. #define First_Position_In_Current_Field(form) \
  191.   (((form)->currow==0) && ((form)->curcol==0))
  192.  
  193.  
  194. #define Minimum(a,b) (((a)<=(b)) ? (a) : (b))
  195. #define Maximum(a,b) (((a)>=(b)) ? (a) : (b))
  196.  
  197. /*---------------------------------------------------------------------------
  198. |   Facility      :  libnform  
  199. |   Function      :  static char *Get_Start_Of_Data(char * buf, int blen)
  200. |   
  201. |   Description   :  Return pointer to first non-blank position in buffer.
  202. |                    If buffer is empty return pointer to buffer itself.
  203. |
  204. |   Return Values :  Pointer to first non-blank position in buffer
  205. +--------------------------------------------------------------------------*/
  206. INLINE static char *Get_Start_Of_Data(char * buf, int blen)
  207. {
  208.   char *p   = buf;
  209.   char *end = &buf[blen];
  210.  
  211.   assert(buf && blen>=0);
  212.   while( (p < end) && is_blank(*p) ) 
  213.     p++;
  214.   return( (p==end) ? buf : p );
  215. }
  216.  
  217. /*---------------------------------------------------------------------------
  218. |   Facility      :  libnform  
  219. |   Function      :  static char *After_End_Of_Data(char * buf, int blen)
  220. |   
  221. |   Description   :  Return pointer after last non-blank position in buffer.
  222. |                    If buffer is empty, return pointer to buffer itself.
  223. |
  224. |   Return Values :  Pointer to position after last non-blank position in 
  225. |                    buffer.
  226. +--------------------------------------------------------------------------*/
  227. INLINE static char *After_End_Of_Data(char * buf,int blen)
  228. {
  229.   char *p   = &buf[blen];
  230.   
  231.   assert(buf && blen>=0);
  232.   while( (p>buf) && is_blank(p[-1]) ) 
  233.     p--;
  234.   return( p );
  235. }
  236.  
  237. /*---------------------------------------------------------------------------
  238. |   Facility      :  libnform  
  239. |   Function      :  static char *Get_First_Whitespace_Character(
  240. |                                     char * buf, int   blen)
  241. |   
  242. |   Description   :  Position to the first whitespace character.
  243. |
  244. |   Return Values :  Pointer to first whitespace character in buffer.
  245. +--------------------------------------------------------------------------*/
  246. INLINE static char *Get_First_Whitespace_Character(char * buf, int blen)
  247. {
  248.   char *p   = buf;
  249.   char *end = &p[blen];
  250.   
  251.   assert(buf && blen>=0);
  252.   while( (p < end) && !is_blank(*p)) 
  253.     p++;
  254.   return( (p==end) ? buf : p );
  255. }
  256.  
  257. /*---------------------------------------------------------------------------
  258. |   Facility      :  libnform  
  259. |   Function      :  static char *After_Last_Whitespace_Character(
  260. |                                     char * buf, int blen)
  261. |   
  262. |   Description   :  Get the position after the last whitespace character.
  263. |
  264. |   Return Values :  Pointer to position after last whitespace character in 
  265. |                    buffer.
  266. +--------------------------------------------------------------------------*/
  267. INLINE static char *After_Last_Whitespace_Character(char * buf, int blen)
  268. {
  269.   char *p   = &buf[blen];
  270.   
  271.   assert(buf && blen>=0);
  272.   while( (p>buf) && !is_blank(p[-1]) ) 
  273.     p--;
  274.   return( p );
  275. }
  276.  
  277. /* Set this to 1 to use the div_t version. This is a good idea if your
  278.    compiler has an intrinsic div() support. Unfortunately GNU-C has it
  279.    not yet. 
  280.    N.B.: This only works if form->curcol follows immediately form->currow
  281.          and both are of type int. 
  282. */
  283. #define USE_DIV_T (0)
  284.  
  285. /*---------------------------------------------------------------------------
  286. |   Facility      :  libnform  
  287. |   Function      :  static void Adjust_Cursor_Position(
  288. |                                       FORM * form, const char * pos)
  289. |   
  290. |   Description   :  Set current row and column of the form to values 
  291. |                    corresponding to the buffer position.
  292. |
  293. |   Return Values :  -
  294. +--------------------------------------------------------------------------*/
  295. INLINE static void Adjust_Cursor_Position(FORM * form, const char * pos)
  296. {
  297.   FIELD *field;
  298.   int idx;
  299.  
  300.   field = form->current;
  301.   assert( pos >= field->buf && field->dcols > 0);
  302.   idx = (int)( pos - field->buf );
  303. #if USE_DIV_T
  304.   *((div_t *)&(form->currow)) = div(idx,field->dcols);
  305. #else
  306.   form->currow = idx / field->dcols;
  307.   form->curcol = idx - field->cols * form->currow;
  308. #endif  
  309.   if ( field->drows < form->currow )
  310.     form->currow = 0;
  311. }
  312.  
  313. /*---------------------------------------------------------------------------
  314. |   Facility      :  libnform  
  315. |   Function      :  static void Buffer_To_Window(
  316. |                                      const FIELD  * field,
  317. |                                      WINDOW * win)
  318. |   
  319. |   Description   :  Copy the buffer to the window. If its a multiline
  320. |                    field, the buffer is split to the lines of the
  321. |                    window without any editing.
  322. |
  323. |   Return Values :  -
  324. +--------------------------------------------------------------------------*/
  325. static void Buffer_To_Window(const FIELD  * field, WINDOW * win)
  326. {
  327.   int width, height;
  328.   int len;
  329.   int row;
  330.   char *pBuffer;
  331.  
  332.   assert(win && field);
  333.  
  334.   width  = getmaxx(win);
  335.   height = getmaxy(win);
  336.  
  337.   for(row=0, pBuffer=field->buf; 
  338.       row < height; 
  339.       row++, pBuffer += width )
  340.     {
  341.       if ((len = (int)( After_End_Of_Data( pBuffer, width ) - pBuffer )) > 0)
  342.     {
  343.       wmove( win, row, 0 );
  344.       waddnstr( win, pBuffer, len );
  345.     }
  346.     }    
  347. }
  348.  
  349. /*---------------------------------------------------------------------------
  350. |   Facility      :  libnform  
  351. |   Function      :  static void Window_To_Buffer(
  352. |                                          WINDOW * win,
  353. |                                          FIELD  * field)
  354. |   
  355. |   Description   :  Copy the content of the window into the buffer.
  356. |                    The multiple lines of a window are simply
  357. |                    concatenated into the buffer. Pad characters in
  358. |                    the window will be replaced by blanks in the buffer.
  359. |
  360. |   Return Values :  -
  361. +--------------------------------------------------------------------------*/
  362. static void Window_To_Buffer(WINDOW * win, FIELD  * field)
  363. {
  364.   int pad;
  365.   int len = 0;
  366.   char *p;
  367.   int row, height;
  368.   
  369.   assert(win && field && field->buf );
  370.  
  371.   pad = field->pad;
  372.   p = field->buf;
  373.   height = getmaxy(win);
  374.  
  375.   for(row=0; (row < height) && (row < field->drows); row++ )
  376.     {
  377.       wmove( win, row, 0 );
  378.       len += winnstr( win, p+len, field->dcols );
  379.     }
  380.   p[len] = '\0';
  381.  
  382.   /* replace visual padding character by blanks in buffer */
  383.   if (pad != C_BLANK)
  384.     {
  385.       int i;
  386.       for(i=0; i<len; i++, p++)
  387.     {
  388.       if (*p==pad) 
  389.         *p = C_BLANK;
  390.     }
  391.     }
  392. }
  393.  
  394. /*---------------------------------------------------------------------------
  395. |   Facility      :  libnform  
  396. |   Function      :  static void Synchronize_Buffer(FORM * form)
  397. |   
  398. |   Description   :  If there was a change, copy the content of the
  399. |                    window into the buffer, so the buffer is synchronized
  400. |                    with the windows content. We have to indicate that the
  401. |                    buffer needs validation due to the change.
  402. |
  403. |   Return Values :  -
  404. +--------------------------------------------------------------------------*/
  405. INLINE static void Synchronize_Buffer(FORM * form)
  406. {
  407.   if (form->status & _WINDOW_MODIFIED)
  408.     {
  409.       form->status &= ~_WINDOW_MODIFIED;
  410.       form->status |=  _FCHECK_REQUIRED;
  411.       Window_To_Buffer(form->w,form->current);
  412.       wmove(form->w,form->currow,form->curcol);
  413.     }
  414. }
  415.  
  416. /*---------------------------------------------------------------------------
  417. |   Facility      :  libnform  
  418. |   Function      :  static bool Field_Grown( FIELD *field, int amount)
  419. |   
  420. |   Description   :  This function is called for growable dynamic fields
  421. |                    only. It has to increase the buffers and to allocate
  422. |                    a new window for this field.
  423. |                    This function has the side effect to set a new
  424. |                    field-buffer pointer, the dcols and drows values
  425. |                    as well as a new current Window for the field.
  426. |
  427. |   Return Values :  TRUE     - field successfully increased
  428. |                    FALSE    - there was some error
  429. +--------------------------------------------------------------------------*/
  430. static bool Field_Grown(FIELD * field, int amount)
  431. {
  432.   bool result = FALSE;
  433.  
  434.   if (field && Growable(field))
  435.     {
  436.       bool single_line_field = Single_Line_Field(field);
  437.       int old_buflen = Buffer_Length(field);
  438.       int new_buflen;
  439.       int old_dcols = field->dcols;
  440.       int old_drows = field->drows;
  441.       char *oldbuf  = field->buf;
  442.       char *newbuf;
  443.  
  444.       int growth;
  445.       FORM *form = field->form;
  446.       bool need_visual_update = ((form != (FORM *)0)      &&
  447.                  (form->status & _POSTED) &&
  448.                  (form->current==field));
  449.       
  450.       if (need_visual_update)
  451.     Synchronize_Buffer(form);
  452.       
  453.       if (single_line_field)
  454.     {
  455.       growth = field->cols * amount;
  456.       if (field->maxgrow)
  457.         growth = Minimum(field->maxgrow - field->dcols,growth);
  458.       field->dcols += growth;
  459.       if (field->dcols == field->maxgrow)
  460.         field->status &= ~_MAY_GROW;
  461.     }
  462.       else
  463.     {
  464.       growth = (field->rows + field->nrow) * amount;
  465.       if (field->maxgrow)
  466.         growth = Minimum(field->maxgrow - field->drows,growth);
  467.       field->drows += growth;
  468.       if (field->drows == field->maxgrow)
  469.         field->status &= ~_MAY_GROW;
  470.     }
  471.       /* drows, dcols changed, so we get really the new buffer length */
  472.       new_buflen = Buffer_Length(field);
  473.       newbuf=(char *)malloc((size_t)Total_Buffer_Size(field));
  474.       if (!newbuf)
  475.     { /* restore to previous state */
  476.       field->dcols = old_dcols;
  477.       field->drows = old_drows;
  478.       if (( single_line_field && (field->dcols!=field->maxgrow)) ||
  479.           (!single_line_field && (field->drows!=field->maxgrow)))
  480.         field->status |= _MAY_GROW;
  481.       return FALSE;
  482.     }
  483.       else
  484.     { /* Copy all the buffers. This is the reason why we can't
  485.          just use realloc().
  486.          */
  487.       int i;
  488.       char *old_bp;
  489.       char *new_bp;
  490.       
  491.       field->buf = newbuf;
  492.       for(i=0;i<=field->nbuf;i++)
  493.         {
  494.           new_bp = Address_Of_Nth_Buffer(field,i);
  495.           old_bp = oldbuf + i*(1+old_buflen);
  496.           memcpy(new_bp,old_bp,(size_t)old_buflen);
  497.           if (new_buflen > old_buflen)
  498.         memset(new_bp + old_buflen,C_BLANK,
  499.                (size_t)(new_buflen - old_buflen));
  500.           *(new_bp + new_buflen) = '\0';
  501.         }
  502.  
  503.       if (need_visual_update)
  504.         {           
  505.           WINDOW *new_window = newpad(field->drows,field->dcols);
  506.           if (!new_window)
  507.         { /* restore old state */
  508.           field->dcols = old_dcols;
  509.           field->drows = old_drows;
  510.           field->buf   = oldbuf;
  511.           if (( single_line_field              && 
  512.             (field->dcols!=field->maxgrow)) ||
  513.               (!single_line_field              && 
  514.                (field->drows!=field->maxgrow)))
  515.             field->status |= _MAY_GROW;
  516.           free( newbuf );
  517.           return FALSE;
  518.         }
  519.           assert(form!=(FORM *)0);
  520.           if (form->w)
  521.         delwin(form->w);
  522.           form->w = new_window;
  523.           Set_Field_Window_Attributes(field,form->w);
  524.           werase(form->w);
  525.           Buffer_To_Window(field,form->w);
  526.           untouchwin(form->w);
  527.           wmove(form->w,form->currow,form->curcol);
  528.         }
  529.  
  530.       free(oldbuf);
  531.       /* reflect changes in linked fields */
  532.       if (field != field->link)
  533.         {
  534.           FIELD *linked_field;
  535.           for(linked_field = field->link;
  536.           linked_field!= field;
  537.           linked_field = linked_field->link)
  538.         {
  539.           linked_field->buf   = field->buf;
  540.           linked_field->drows = field->drows;
  541.           linked_field->dcols = field->dcols;
  542.         }
  543.         }
  544.       result = TRUE;
  545.     }    
  546.     }
  547.   return(result);
  548. }
  549.  
  550. /*---------------------------------------------------------------------------
  551. |   Facility      :  libnform  
  552. |   Function      :  int _nc_Position_Form_Cursor(FORM * form)
  553. |   
  554. |   Description   :  Position the cursor in the window for the current
  555. |                    field to be in sync. with the currow and curcol 
  556. |                    values.
  557. |
  558. |   Return Values :  E_OK              - success
  559. |                    E_BAD_ARGUMENT    - invalid form pointer
  560. |                    E_SYSTEM_ERROR    - form has no current field or
  561. |                                        field-window
  562. +--------------------------------------------------------------------------*/
  563. NCURSES_EXPORT(int)
  564. _nc_Position_Form_Cursor (FORM * form)
  565. {
  566.   FIELD  *field;
  567.   WINDOW *formwin;
  568.   
  569.   if (!form)
  570.     return(E_BAD_ARGUMENT);
  571.  
  572.   if (!form->w || !form->current) 
  573.     return(E_SYSTEM_ERROR);
  574.  
  575.   field    = form->current;
  576.   formwin  = Get_Form_Window(form);
  577.  
  578.   wmove( form->w, form->currow, form->curcol );
  579.   if ( Has_Invisible_Parts(field) )
  580.     {
  581.       /* in this case fieldwin isn't derived from formwin, so we have
  582.      to move the cursor in formwin by hand... */
  583.       wmove(formwin,
  584.         field->frow + form->currow - form->toprow,
  585.         field->fcol + form->curcol - form->begincol);
  586.       wcursyncup(formwin);
  587.     }
  588.   else 
  589.     wcursyncup(form->w);
  590.   return(E_OK);
  591. }
  592.  
  593. /*---------------------------------------------------------------------------
  594. |   Facility      :  libnform  
  595. |   Function      :  int _nc_Refresh_Current_Field(FORM * form)
  596. |   
  597. |   Description   :  Propagate the changes in the fields window to the
  598. |                    window of the form.
  599. |
  600. |   Return Values :  E_OK              - on success
  601. |                    E_BAD_ARGUMENT    - invalid form pointer
  602. |                    E_SYSTEM_ERROR    - general error
  603. +--------------------------------------------------------------------------*/
  604. NCURSES_EXPORT(int)
  605. _nc_Refresh_Current_Field (FORM * form)
  606. {
  607.   WINDOW *formwin;
  608.   FIELD  *field;
  609.  
  610.   if (!form)
  611.     RETURN(E_BAD_ARGUMENT);
  612.  
  613.   if (!form->w || !form->current) 
  614.     RETURN(E_SYSTEM_ERROR);
  615.  
  616.   field    = form->current;
  617.   formwin  = Get_Form_Window(form);
  618.  
  619.   if (field->opts & O_PUBLIC)
  620.     {
  621.       if (Is_Scroll_Field(field))
  622.     {
  623.       /* Again, in this case the fieldwin isn't derived from formwin,
  624.          so we have to perform a copy operation. */
  625.       if (Single_Line_Field(field))
  626.         { /* horizontal scrolling */
  627.           if (form->curcol < form->begincol)
  628.           form->begincol = form->curcol;
  629.           else
  630.         {
  631.           if (form->curcol >= (form->begincol + field->cols))
  632.               form->begincol = form->curcol - field->cols + 1;
  633.         }
  634.           copywin(form->w,
  635.               formwin,
  636.               0,
  637.               form->begincol,
  638.               field->frow,
  639.               field->fcol,
  640.               field->frow,
  641.               field->cols + field->fcol - 1,
  642.               0);
  643.         }
  644.       else
  645.         { /* A multiline, i.e. vertical scrolling field */
  646.           int row_after_bottom,first_modified_row,first_unmodified_row;
  647.  
  648.           if (field->drows > field->rows)
  649.         {
  650.           row_after_bottom = form->toprow + field->rows;
  651.           if (form->currow < form->toprow)
  652.             {
  653.               form->toprow = form->currow;
  654.               field->status |= _NEWTOP;
  655.             }
  656.           if (form->currow >= row_after_bottom)
  657.             {
  658.               form->toprow = form->currow - field->rows + 1;
  659.               field->status |= _NEWTOP;
  660.             }
  661.           if (field->status & _NEWTOP)
  662.             { /* means we have to copy whole range */
  663.               first_modified_row = form->toprow;
  664.               first_unmodified_row = first_modified_row + field->rows;
  665.               field->status &= ~_NEWTOP;
  666.             }
  667.           else 
  668.             { /* we try to optimize : finding the range of touched
  669.                          lines */
  670.               first_modified_row = form->toprow;
  671.               while(first_modified_row < row_after_bottom)
  672.             {
  673.               if (is_linetouched(form->w,first_modified_row)) 
  674.                 break;
  675.               first_modified_row++;
  676.             }
  677.               first_unmodified_row = first_modified_row;
  678.               while(first_unmodified_row < row_after_bottom)
  679.             {
  680.               if (!is_linetouched(form->w,first_unmodified_row)) 
  681.                 break;
  682.               first_unmodified_row++;
  683.             }
  684.             }
  685.         }
  686.           else
  687.         {
  688.           first_modified_row   = form->toprow;
  689.           first_unmodified_row = first_modified_row + field->rows;
  690.         }
  691.           if (first_unmodified_row != first_modified_row)
  692.         copywin(form->w,
  693.             formwin,
  694.             first_modified_row,
  695.             0,
  696.             field->frow + first_modified_row - form->toprow,
  697.             field->fcol,
  698.             field->frow + first_unmodified_row - form->toprow - 1,
  699.             field->cols + field->fcol - 1,
  700.             0);
  701.         }
  702.       wsyncup(formwin);
  703.     }
  704.       else
  705.     { /* if the field-window is simply a derived window, i.e. contains
  706.          no invisible parts, the whole thing is trivial 
  707.       */
  708.       wsyncup(form->w);
  709.     }
  710.     }
  711.   untouchwin(form->w);
  712.   return _nc_Position_Form_Cursor(form);
  713. }
  714.     
  715. /*---------------------------------------------------------------------------
  716. |   Facility      :  libnform  
  717. |   Function      :  static void Perform_Justification(
  718. |                                        FIELD  * field,
  719. |                                        WINDOW * win)
  720. |   
  721. |   Description   :  Output field with requested justification 
  722. |
  723. |   Return Values :  -
  724. +--------------------------------------------------------------------------*/
  725. static void Perform_Justification(FIELD  * field, WINDOW * win)
  726. {
  727.   char *bp;
  728.   int len;
  729.   int col  = 0;
  730.  
  731.   bp  = Get_Start_Of_Data(field->buf,Buffer_Length(field));
  732.   len = (int)(After_End_Of_Data(field->buf,Buffer_Length(field)) - bp);
  733.  
  734.   if (len>0)
  735.     {
  736.       assert(win && (field->drows == 1) && (field->dcols == field->cols));
  737.  
  738.       switch(field->just)
  739.     {
  740.     case JUSTIFY_LEFT:
  741.       break;
  742.     case JUSTIFY_CENTER:
  743.       col = (field->cols - len)/2;
  744.       break;
  745.     case JUSTIFY_RIGHT:
  746.       col = field->cols - len;
  747.       break;
  748.     default:
  749.       break;
  750.     }
  751.  
  752.       wmove(win,0,col);
  753.       waddnstr(win,bp,len);
  754.     }
  755. }
  756.  
  757. /*---------------------------------------------------------------------------
  758. |   Facility      :  libnform  
  759. |   Function      :  static void Undo_Justification(
  760. |                                     FIELD  * field,
  761. |                                     WINDOW * win)
  762. |   
  763. |   Description   :  Display field without any justification, i.e.
  764. |                    left justified
  765. |
  766. |   Return Values :  -
  767. +--------------------------------------------------------------------------*/
  768. static void Undo_Justification(FIELD  * field, WINDOW * win)
  769. {
  770.   char *bp;
  771.   int len;
  772.  
  773.   bp  = Get_Start_Of_Data(field->buf,Buffer_Length(field));
  774.   len = (int)(After_End_Of_Data(field->buf,Buffer_Length(field))-bp);
  775.  
  776.   if (len>0)
  777.     {
  778.       assert(win);
  779.       wmove(win,0,0);
  780.       waddnstr(win,bp,len);
  781.     }
  782. }
  783.  
  784. /*---------------------------------------------------------------------------
  785. |   Facility      :  libnform  
  786. |   Function      :  static bool Check_Char(
  787. |                                           FIELDTYPE * typ,
  788. |                                           int ch,
  789. |                                           TypeArgument *argp)
  790. |   
  791. |   Description   :  Perform a single character check for character ch
  792. |                    according to the fieldtype instance.  
  793. |
  794. |   Return Values :  TRUE             - Character is valid
  795. |                    FALSE            - Character is invalid
  796. +--------------------------------------------------------------------------*/
  797. static bool Check_Char(FIELDTYPE * typ, int ch, TypeArgument *argp)
  798. {
  799.   if (typ) 
  800.     {
  801.       if (typ->status & _LINKED_TYPE)
  802.     {
  803.       assert(argp);
  804.       return(
  805.         Check_Char(typ->left ,ch,argp->left ) ||
  806.         Check_Char(typ->right,ch,argp->right) );
  807.     } 
  808.       else 
  809.     {
  810.       if (typ->ccheck)
  811.         return typ->ccheck(ch,(void *)argp);
  812.     }
  813.     }
  814.   return (isprint((unsigned char)ch) ? TRUE : FALSE);
  815. }
  816.  
  817. /*---------------------------------------------------------------------------
  818. |   Facility      :  libnform  
  819. |   Function      :  static int Display_Or_Erase_Field(
  820. |                                           FIELD * field,
  821. |                                           bool bEraseFlag)
  822. |   
  823. |   Description   :  Create a subwindow for the field and display the
  824. |                    buffer contents (apply justification if required)
  825. |                    or simply erase the field.
  826. |
  827. |   Return Values :  E_OK           - on success
  828. |                    E_SYSTEM_ERROR - some error (typical no memory)
  829. +--------------------------------------------------------------------------*/
  830. static int Display_Or_Erase_Field(FIELD * field, bool bEraseFlag)
  831. {
  832.   WINDOW *win;
  833.   WINDOW *fwin;
  834.  
  835.   if (!field)
  836.     return E_SYSTEM_ERROR;
  837.  
  838.   fwin = Get_Form_Window(field->form);
  839.   win  = derwin(fwin,
  840.         field->rows,field->cols,field->frow,field->fcol);
  841.  
  842.   if (!win) 
  843.     return E_SYSTEM_ERROR;
  844.   else
  845.     {
  846.       if (field->opts & O_VISIBLE)
  847.     Set_Field_Window_Attributes(field,win);
  848.       else
  849.     wattrset(win,getattrs(fwin));
  850.       werase(win);
  851.     }
  852.  
  853.   if (!bEraseFlag)
  854.     {
  855.       if (field->opts & O_PUBLIC)
  856.     {
  857.       if (Justification_Allowed(field))
  858.         Perform_Justification(field,win);
  859.       else
  860.         Buffer_To_Window(field,win);
  861.     }
  862.       field->status &= ~_NEWTOP;
  863.     }
  864.   wsyncup(win);
  865.   delwin(win);
  866.   return E_OK;
  867. }
  868.  
  869. /* Macros to preset the bEraseFlag */
  870. #define Display_Field(field) Display_Or_Erase_Field(field,FALSE)
  871. #define Erase_Field(field)   Display_Or_Erase_Field(field,TRUE)
  872.  
  873. /*---------------------------------------------------------------------------
  874. |   Facility      :  libnform  
  875. |   Function      :  static int Synchronize_Field(FIELD * field)
  876. |   
  877. |   Description   :  Synchronize the windows content with the value in
  878. |                    the buffer.
  879. |
  880. |   Return Values :  E_OK                - success
  881. |                    E_BAD_ARGUMENT      - invalid field pointer 
  882. |                    E_SYSTEM_ERROR      - some severe basic error
  883. +--------------------------------------------------------------------------*/
  884. static int Synchronize_Field(FIELD * field)
  885. {
  886.   FORM *form;
  887.   int res = E_OK;
  888.  
  889.   if (!field)
  890.     return(E_BAD_ARGUMENT);
  891.  
  892.   if (((form=field->form) != (FORM *)0)
  893.       && Field_Really_Appears(field))
  894.     {
  895.       if (field == form->current)
  896.     { 
  897.       form->currow  = form->curcol = form->toprow = form->begincol = 0;
  898.       werase(form->w);
  899.       
  900.       if ( (field->opts & O_PUBLIC) && Justification_Allowed(field) )
  901.         Undo_Justification( field, form->w );
  902.       else
  903.         Buffer_To_Window( field, form->w );
  904.       
  905.       field->status |= _NEWTOP;
  906.       res = _nc_Refresh_Current_Field( form );
  907.     }
  908.       else
  909.     res = Display_Field( field );
  910.     }
  911.   field->status |= _CHANGED;
  912.   return(res);
  913. }
  914.  
  915. /*---------------------------------------------------------------------------
  916. |   Facility      :  libnform  
  917. |   Function      :  static int Synchronize_Linked_Fields(FIELD * field)
  918. |   
  919. |   Description   :  Propagate the Synchronize_Field function to all linked
  920. |                    fields. The first error that occurs in the sequence
  921. |                    of updates is the returnvalue.
  922. |
  923. |   Return Values :  E_OK                - success
  924. |                    E_BAD_ARGUMENT      - invalid field pointer 
  925. |                    E_SYSTEM_ERROR      - some severe basic error
  926. +--------------------------------------------------------------------------*/
  927. static int Synchronize_Linked_Fields(FIELD * field)
  928. {
  929.   FIELD *linked_field;
  930.   int res = E_OK;
  931.   int syncres;
  932.  
  933.   if (!field)
  934.     return(E_BAD_ARGUMENT);
  935.  
  936.   if (!field->link)
  937.     return(E_SYSTEM_ERROR);
  938.  
  939.   for(linked_field = field->link; 
  940.       linked_field!= field;
  941.       linked_field = linked_field->link )
  942.     {
  943.       if (((syncres=Synchronize_Field(linked_field)) != E_OK) &&
  944.       (res==E_OK))
  945.     res = syncres;
  946.     }
  947.   return(res);
  948. }
  949.  
  950. /*---------------------------------------------------------------------------
  951. |   Facility      :  libnform  
  952. |   Function      :  int _nc_Synchronize_Attributes(FIELD * field)
  953. |   
  954. |   Description   :  If a fields visual attributes have changed, this
  955. |                    routine is called to propagate those changes to the
  956. |                    screen.  
  957. |
  958. |   Return Values :  E_OK             - success
  959. |                    E_BAD_ARGUMENT   - invalid field pointer
  960. |                    E_SYSTEM_ERROR   - some severe basic error
  961. +--------------------------------------------------------------------------*/
  962. NCURSES_EXPORT(int)
  963. _nc_Synchronize_Attributes (FIELD * field)
  964. {
  965.   FORM *form;
  966.   int res = E_OK;
  967.   WINDOW *formwin;
  968.  
  969.   if (!field)
  970.     return(E_BAD_ARGUMENT);
  971.  
  972.   if (((form=field->form) != (FORM *)0)
  973.       && Field_Really_Appears(field))
  974.     {    
  975.       if (form->current==field)
  976.     {
  977.       Synchronize_Buffer(form);
  978.       Set_Field_Window_Attributes(field,form->w);
  979.       werase(form->w);
  980.       if (field->opts & O_PUBLIC)
  981.         {
  982.           if (Justification_Allowed(field))
  983.         Undo_Justification(field,form->w);
  984.           else 
  985.         Buffer_To_Window(field,form->w);
  986.         }
  987.       else 
  988.         {
  989.           formwin = Get_Form_Window(form); 
  990.           copywin(form->w,formwin,
  991.               0,0,
  992.               field->frow,field->fcol,
  993.               field->rows-1,field->cols-1,0);
  994.           wsyncup(formwin);
  995.           Buffer_To_Window(field,form->w);
  996.           field->status |= _NEWTOP; /* fake refresh to paint all */
  997.           _nc_Refresh_Current_Field(form);
  998.         }
  999.     }
  1000.       else 
  1001.     {
  1002.       res = Display_Field(field);
  1003.     }
  1004.     }
  1005.   return(res);
  1006. }
  1007.  
  1008. /*---------------------------------------------------------------------------
  1009. |   Facility      :  libnform  
  1010. |   Function      :  int _nc_Synchronize_Options(FIELD * field,
  1011. |                                                Field_Options newopts)
  1012. |   
  1013. |   Description   :  If a fields options have changed, this routine is
  1014. |                    called to propagate these changes to the screen and
  1015. |                    to really change the behaviour of the field.
  1016. |
  1017. |   Return Values :  E_OK                - success
  1018. |                    E_BAD_ARGUMENT      - invalid field pointer 
  1019. |                    E_SYSTEM_ERROR      - some severe basic error
  1020. +--------------------------------------------------------------------------*/
  1021. NCURSES_EXPORT(int)
  1022. _nc_Synchronize_Options
  1023. (FIELD *field, Field_Options newopts)
  1024. {
  1025.   Field_Options oldopts;
  1026.   Field_Options changed_opts;
  1027.   FORM *form;
  1028.   int res = E_OK;
  1029.  
  1030.   if (!field)
  1031.     return(E_BAD_ARGUMENT);
  1032.  
  1033.   oldopts      = field->opts;
  1034.   changed_opts = oldopts ^ newopts;
  1035.   field->opts  = newopts;
  1036.   form         = field->form;
  1037.  
  1038.   if (form)
  1039.     {
  1040.       if (form->current == field)
  1041.     {
  1042.       field->opts = oldopts;
  1043.       return(E_CURRENT);
  1044.     }
  1045.  
  1046.       if (form->status & _POSTED)
  1047.     {
  1048.       if ((form->curpage == field->page))
  1049.         {
  1050.           if (changed_opts & O_VISIBLE)
  1051.         {
  1052.           if (newopts & O_VISIBLE)
  1053.             res = Display_Field(field);
  1054.           else
  1055.             res = Erase_Field(field);
  1056.         }
  1057.           else
  1058.         {
  1059.           if ((changed_opts & O_PUBLIC) &&
  1060.               (newopts & O_VISIBLE))
  1061.             res = Display_Field(field);
  1062.         }
  1063.         }
  1064.     }
  1065.     }
  1066.  
  1067.   if (changed_opts & O_STATIC)
  1068.     {
  1069.       bool single_line_field = Single_Line_Field(field);
  1070.       int res2 = E_OK;
  1071.  
  1072.       if (newopts & O_STATIC)
  1073.     { /* the field becomes now static */
  1074.       field->status &= ~_MAY_GROW;
  1075.       /* if actually we have no hidden columns, justification may
  1076.          occur again */
  1077.       if (single_line_field                 &&
  1078.           (field->cols == field->dcols)     &&
  1079.           (field->just != NO_JUSTIFICATION) &&
  1080.           Field_Really_Appears(field))
  1081.         {
  1082.           res2 = Display_Field(field);
  1083.         }
  1084.     }
  1085.       else
  1086.     { /* field is no longer static */
  1087.       if ((field->maxgrow==0) ||
  1088.           ( single_line_field && (field->dcols < field->maxgrow)) ||
  1089.           (!single_line_field && (field->drows < field->maxgrow)))
  1090.         {
  1091.           field->status |= _MAY_GROW;
  1092.           /* a field with justification now changes its behaviour,
  1093.          so we must redisplay it */
  1094.           if (single_line_field                 &&
  1095.           (field->just != NO_JUSTIFICATION) &&
  1096.           Field_Really_Appears(field))
  1097.         {
  1098.           res2 = Display_Field(field);
  1099.         }     
  1100.         }     
  1101.     }
  1102.       if (res2 != E_OK)
  1103.     res = res2;
  1104.     }
  1105.  
  1106.   return(res);
  1107. }
  1108.  
  1109. /*---------------------------------------------------------------------------
  1110. |   Facility      :  libnform  
  1111. |   Function      :  int _nc_Set_Current_Field(FORM  * form,
  1112. |                                              FIELD * newfield)
  1113. |   
  1114. |   Description   :  Make the newfield the new current field.
  1115. |
  1116. |   Return Values :  E_OK                - success
  1117. |                    E_BAD_ARGUMENT      - invalid form or field pointer 
  1118. |                    E_SYSTEM_ERROR      - some severe basic error
  1119. +--------------------------------------------------------------------------*/
  1120. NCURSES_EXPORT(int)
  1121. _nc_Set_Current_Field
  1122. (FORM  *form, FIELD *newfield)
  1123. {
  1124.   FIELD  *field;
  1125.   WINDOW *new_window;
  1126.  
  1127.   if (!form || !newfield || !form->current || (newfield->form!=form))
  1128.     return(E_BAD_ARGUMENT);
  1129.  
  1130.   if ( (form->status & _IN_DRIVER) )
  1131.     return(E_BAD_STATE);
  1132.  
  1133.   if (!(form->field))
  1134.     return(E_NOT_CONNECTED);
  1135.  
  1136.   field = form->current;
  1137.  
  1138.   if ((field!=newfield) || 
  1139.       !(form->status & _POSTED))
  1140.     {
  1141.       if ((form->w) && 
  1142.       (field->opts & O_VISIBLE) &&
  1143.       (field->form->curpage == field->page))
  1144.     {
  1145.       _nc_Refresh_Current_Field(form);
  1146.       if (field->opts & O_PUBLIC)
  1147.         {
  1148.           if (field->drows > field->rows)
  1149.         {
  1150.           if (form->toprow==0)
  1151.             field->status &= ~_NEWTOP;
  1152.           else 
  1153.             field->status |= _NEWTOP;
  1154.         } 
  1155.           else 
  1156.         {
  1157.           if (Justification_Allowed(field))
  1158.             {
  1159.               Window_To_Buffer(form->w,field);
  1160.               werase(form->w);
  1161.               Perform_Justification(field,form->w);
  1162.               wsyncup(form->w);
  1163.             }
  1164.         }
  1165.         }
  1166.       delwin(form->w);
  1167.       form->w = (WINDOW *)0;
  1168.     }
  1169.       
  1170.       field = newfield;
  1171.  
  1172.       if (Has_Invisible_Parts(field))
  1173.     new_window = newpad(field->drows,field->dcols);
  1174.       else 
  1175.     new_window = derwin(Get_Form_Window(form),
  1176.                 field->rows,field->cols,field->frow,field->fcol);
  1177.  
  1178.       if (!new_window) 
  1179.     return(E_SYSTEM_ERROR);
  1180.  
  1181.       form->current = field;
  1182.  
  1183.       if (form->w)
  1184.     delwin(form->w);
  1185.       form->w       = new_window;
  1186.  
  1187.       form->status &= ~_WINDOW_MODIFIED;
  1188.       Set_Field_Window_Attributes(field,form->w);
  1189.  
  1190.       if (Has_Invisible_Parts(field))
  1191.     {
  1192.       werase(form->w);
  1193.       Buffer_To_Window(field,form->w);
  1194.     } 
  1195.       else 
  1196.     {
  1197.       if (Justification_Allowed(field))
  1198.         {
  1199.           werase(form->w);
  1200.           Undo_Justification(field,form->w);
  1201.           wsyncup(form->w);
  1202.         }
  1203.     }
  1204.  
  1205.       untouchwin(form->w);
  1206.     }
  1207.  
  1208.   form->currow = form->curcol = form->toprow = form->begincol = 0;
  1209.   return(E_OK);
  1210. }
  1211.  
  1212. /*----------------------------------------------------------------------------
  1213.   Intra-Field Navigation routines
  1214.   --------------------------------------------------------------------------*/
  1215.  
  1216. /*---------------------------------------------------------------------------
  1217. |   Facility      :  libnform  
  1218. |   Function      :  static int IFN_Next_Character(FORM * form)
  1219. |   
  1220. |   Description   :  Move to the next character in the field. In a multiline
  1221. |                    field this wraps at the end of the line.
  1222. |
  1223. |   Return Values :  E_OK                - success
  1224. |                    E_REQUEST_DENIED    - at the rightmost position
  1225. +--------------------------------------------------------------------------*/
  1226. static int IFN_Next_Character(FORM * form)
  1227. {
  1228.   FIELD *field = form->current;
  1229.   
  1230.   if ((++(form->curcol))==field->dcols)
  1231.     {
  1232.       if ((++(form->currow))==field->drows)
  1233.     {
  1234. #if GROW_IF_NAVIGATE
  1235.       if (!Single_Line_Field(field) && Field_Grown(field,1)) {
  1236.         form->curcol = 0;
  1237.         return(E_OK);
  1238.       }
  1239. #endif
  1240.       form->currow--;
  1241. #if GROW_IF_NAVIGATE
  1242.       if (Single_Line_Field(field) && Field_Grown(field,1))
  1243.         return(E_OK);
  1244. #endif
  1245.       form->curcol--;
  1246.       return(E_REQUEST_DENIED);
  1247.     }
  1248.       form->curcol = 0;
  1249.     }
  1250.   return(E_OK);
  1251. }
  1252.  
  1253. /*---------------------------------------------------------------------------
  1254. |   Facility      :  libnform  
  1255. |   Function      :  static int IFN_Previous_Character(FORM * form)
  1256. |   
  1257. |   Description   :  Move to the previous character in the field. In a 
  1258. |                    multiline field this wraps and the beginning of the 
  1259. |                    line.
  1260. |
  1261. |   Return Values :  E_OK                - success
  1262. |                    E_REQUEST_DENIED    - at the leftmost position
  1263. +--------------------------------------------------------------------------*/
  1264. static int IFN_Previous_Character(FORM * form)
  1265. {
  1266.   if ((--(form->curcol))<0)
  1267.     {
  1268.       if ((--(form->currow))<0)
  1269.     {
  1270.       form->currow++;
  1271.       form->curcol++;
  1272.       return(E_REQUEST_DENIED);
  1273.     }
  1274.       form->curcol = form->current->dcols - 1;
  1275.     }
  1276.   return(E_OK);
  1277. }
  1278.  
  1279. /*---------------------------------------------------------------------------
  1280. |   Facility      :  libnform  
  1281. |   Function      :  static int IFN_Next_Line(FORM * form)
  1282. |   
  1283. |   Description   :  Move to the beginning of the next line in the field
  1284. |
  1285. |   Return Values :  E_OK                - success
  1286. |                    E_REQUEST_DENIED    - at the last line
  1287. +--------------------------------------------------------------------------*/
  1288. static int IFN_Next_Line(FORM * form)
  1289. {
  1290.   FIELD *field = form->current;
  1291.  
  1292.   if ((++(form->currow))==field->drows)
  1293.     {
  1294. #if GROW_IF_NAVIGATE
  1295.       if (!Single_Line_Field(field) && Field_Grown(field,1))
  1296.     return(E_OK);
  1297. #endif
  1298.       form->currow--;
  1299.       return(E_REQUEST_DENIED);
  1300.     }
  1301.   form->curcol = 0;
  1302.   return(E_OK);
  1303. }
  1304.  
  1305. /*---------------------------------------------------------------------------
  1306. |   Facility      :  libnform  
  1307. |   Function      :  static int IFN_Previous_Line(FORM * form)
  1308. |   
  1309. |   Description   :  Move to the beginning of the previous line in the field
  1310. |
  1311. |   Return Values :  E_OK                - success
  1312. |                    E_REQUEST_DENIED    - at the first line
  1313. +--------------------------------------------------------------------------*/
  1314. static int IFN_Previous_Line(FORM * form)
  1315. {
  1316.   if ( (--(form->currow)) < 0 )
  1317.     {
  1318.       form->currow++;
  1319.       return(E_REQUEST_DENIED);
  1320.     }
  1321.   form->curcol = 0;
  1322.   return(E_OK);
  1323. }
  1324.  
  1325. /*---------------------------------------------------------------------------
  1326. |   Facility      :  libnform  
  1327. |   Function      :  static int IFN_Next_Word(FORM * form)
  1328. |   
  1329. |   Description   :  Move to the beginning of the next word in the field.
  1330. |
  1331. |   Return Values :  E_OK             - success
  1332. |                    E_REQUEST_DENIED - there is no next word
  1333. +--------------------------------------------------------------------------*/
  1334. static int IFN_Next_Word(FORM * form)
  1335. {
  1336.   FIELD *field = form->current;
  1337.   char  *bp    = Address_Of_Current_Position_In_Buffer(form);
  1338.   char  *s;
  1339.   char  *t;
  1340.  
  1341.   /* We really need access to the data, so we have to synchronize */
  1342.   Synchronize_Buffer(form);
  1343.  
  1344.   /* Go to the first whitespace after the current position (including
  1345.      current position). This is then the startpoint to look for the
  1346.     next non-blank data */
  1347.   s = Get_First_Whitespace_Character(bp,Buffer_Length(field) -
  1348.                      (int)(bp - field->buf));
  1349.  
  1350.   /* Find the start of the next word */
  1351.   t = Get_Start_Of_Data(s,Buffer_Length(field) -
  1352.             (int)(s - field->buf));
  1353. #if !FRIENDLY_PREV_NEXT_WORD
  1354.   if (s==t) 
  1355.     return(E_REQUEST_DENIED);
  1356.   else
  1357. #endif
  1358.     {
  1359.       Adjust_Cursor_Position(form,t);
  1360.       return(E_OK);
  1361.     }
  1362. }
  1363.  
  1364. /*---------------------------------------------------------------------------
  1365. |   Facility      :  libnform  
  1366. |   Function      :  static int IFN_Previous_Word(FORM * form)
  1367. |   
  1368. |   Description   :  Move to the beginning of the previous word in the field.
  1369. |
  1370. |   Return Values :  E_OK             - success
  1371. |                    E_REQUEST_DENIED - there is no previous word
  1372. +--------------------------------------------------------------------------*/
  1373. static int IFN_Previous_Word(FORM * form)
  1374. {
  1375.   FIELD *field = form->current;
  1376.   char  *bp    = Address_Of_Current_Position_In_Buffer(form);
  1377.   char  *s;
  1378.   char  *t;
  1379.   bool  again = FALSE;
  1380.  
  1381.   /* We really need access to the data, so we have to synchronize */
  1382.   Synchronize_Buffer(form);
  1383.  
  1384.   s = After_End_Of_Data(field->buf,(int)(bp-field->buf));
  1385.   /* s points now right after the last non-blank in the buffer before bp.
  1386.      If bp was in a word, s equals bp. In this case we must find the last
  1387.      whitespace in the buffer before bp and repeat the game to really find
  1388.      the previous word! */
  1389.   if (s==bp)
  1390.     again = TRUE;
  1391.   
  1392.   /* And next call now goes backward to look for the last whitespace
  1393.      before that, pointing right after this, so it points to the begin
  1394.      of the previous word. 
  1395.   */
  1396.   t = After_Last_Whitespace_Character(field->buf,(int)(s - field->buf));
  1397. #if !FRIENDLY_PREV_NEXT_WORD
  1398.   if (s==t) 
  1399.     return(E_REQUEST_DENIED);
  1400. #endif
  1401.   if (again)
  1402.     { /* and do it again, replacing bp by t */
  1403.       s = After_End_Of_Data(field->buf,(int)(t - field->buf));
  1404.       t = After_Last_Whitespace_Character(field->buf,(int)(s - field->buf));
  1405. #if !FRIENDLY_PREV_NEXT_WORD
  1406.       if (s==t) 
  1407.     return(E_REQUEST_DENIED);
  1408. #endif
  1409.     }
  1410.   Adjust_Cursor_Position(form,t);
  1411.   return(E_OK);
  1412. }
  1413.  
  1414. /*---------------------------------------------------------------------------
  1415. |   Facility      :  libnform  
  1416. |   Function      :  static int IFN_Beginning_Of_Field(FORM * form)
  1417. |   
  1418. |   Description   :  Place the cursor at the first non-pad character in
  1419. |                    the field. 
  1420. |
  1421. |   Return Values :  E_OK             - success            
  1422. +--------------------------------------------------------------------------*/
  1423. static int IFN_Beginning_Of_Field(FORM * form)
  1424. {
  1425.   FIELD *field = form->current;
  1426.  
  1427.   Synchronize_Buffer(form);
  1428.   Adjust_Cursor_Position(form,
  1429.          Get_Start_Of_Data(field->buf,Buffer_Length(field)));
  1430.   return(E_OK);
  1431. }
  1432.  
  1433. /*---------------------------------------------------------------------------
  1434. |   Facility      :  libnform  
  1435. |   Function      :  static int IFN_End_Of_Field(FORM * form)
  1436. |   
  1437. |   Description   :  Place the cursor after the last non-pad character in
  1438. |                    the field. If the field occupies the last position in
  1439. |                    the buffer, the cursos is positioned on the last 
  1440. |                    character.
  1441. |
  1442. |   Return Values :  E_OK              - success
  1443. +--------------------------------------------------------------------------*/
  1444. static int IFN_End_Of_Field(FORM * form)
  1445. {
  1446.   FIELD *field = form->current;
  1447.   char *pos;
  1448.  
  1449.   Synchronize_Buffer(form);
  1450.   pos = After_End_Of_Data(field->buf,Buffer_Length(field));
  1451.   if (pos==(field->buf + Buffer_Length(field)))
  1452.     pos--;
  1453.   Adjust_Cursor_Position(form,pos);
  1454.   return(E_OK);
  1455. }
  1456.  
  1457. /*---------------------------------------------------------------------------
  1458. |   Facility      :  libnform  
  1459. |   Function      :  static int IFN_Beginning_Of_Line(FORM * form)
  1460. |   
  1461. |   Description   :  Place the cursor on the first non-pad character in
  1462. |                    the current line of the field.
  1463. |
  1464. |   Return Values :  E_OK         - success
  1465. +--------------------------------------------------------------------------*/
  1466. static int IFN_Beginning_Of_Line(FORM * form)
  1467. {
  1468.   FIELD *field = form->current;
  1469.  
  1470.   Synchronize_Buffer(form);
  1471.   Adjust_Cursor_Position(form,
  1472.          Get_Start_Of_Data(Address_Of_Current_Row_In_Buffer(form),
  1473.                    field->dcols));
  1474.   return(E_OK);
  1475. }
  1476.  
  1477. /*---------------------------------------------------------------------------
  1478. |   Facility      :  libnform  
  1479. |   Function      :  static int IFN_End_Of_Line(FORM * form)
  1480. |   
  1481. |   Description   :  Place the cursor after the last non-pad character in the
  1482. |                    current line of the field. If the field occupies the 
  1483. |                    last column in the line, the cursor is positioned on the
  1484. |                    last character of the line.
  1485. |
  1486. |   Return Values :  E_OK        - success
  1487. +--------------------------------------------------------------------------*/
  1488. static int IFN_End_Of_Line(FORM * form)
  1489. {
  1490.   FIELD *field = form->current;
  1491.   char *pos;
  1492.   char *bp;
  1493.  
  1494.   Synchronize_Buffer(form);
  1495.   bp  = Address_Of_Current_Row_In_Buffer(form); 
  1496.   pos = After_End_Of_Data(bp,field->dcols);
  1497.   if (pos == (bp + field->dcols))
  1498.     pos--;
  1499.   Adjust_Cursor_Position(form,pos);
  1500.   return(E_OK);
  1501. }
  1502.  
  1503. /*---------------------------------------------------------------------------
  1504. |   Facility      :  libnform  
  1505. |   Function      :  static int IFN_Left_Character(FORM * form)
  1506. |   
  1507. |   Description   :  Move one character to the left in the current line.
  1508. |                    This doesn't cycle.  
  1509. |
  1510. |   Return Values :  E_OK             - success
  1511. |                    E_REQUEST_DENIED - already in first column
  1512. +--------------------------------------------------------------------------*/
  1513. static int IFN_Left_Character(FORM * form)
  1514. {
  1515.   if ( (--(form->curcol)) < 0 )
  1516.     {
  1517.       form->curcol++;
  1518.       return(E_REQUEST_DENIED);
  1519.     }
  1520.   return(E_OK);
  1521. }
  1522.  
  1523. /*---------------------------------------------------------------------------
  1524. |   Facility      :  libnform  
  1525. |   Function      :  static int IFN_Right_Character(FORM * form)
  1526. |   
  1527. |   Description   :  Move one character to the right in the current line.
  1528. |                    This doesn't cycle.
  1529. |
  1530. |   Return Values :  E_OK              - success
  1531. |                    E_REQUEST_DENIED  - already in last column
  1532. +--------------------------------------------------------------------------*/
  1533. static int IFN_Right_Character(FORM * form)
  1534. {
  1535.   if ( (++(form->curcol)) == form->current->dcols )
  1536.     {
  1537. #if GROW_IF_NAVIGATE
  1538.       FIELD *field = form->current;
  1539.       if (Single_Line_Field(field) && Field_Grown(field,1))
  1540.     return(E_OK);
  1541. #endif
  1542.       --(form->curcol);
  1543.       return(E_REQUEST_DENIED);
  1544.     }
  1545.   return(E_OK);
  1546. }
  1547.  
  1548. /*---------------------------------------------------------------------------
  1549. |   Facility      :  libnform  
  1550. |   Function      :  static int IFN_Up_Character(FORM * form)
  1551. |   
  1552. |   Description   :  Move one line up. This doesn't cycle through the lines
  1553. |                    of the field.
  1554. |
  1555. |   Return Values :  E_OK              - success
  1556. |                    E_REQUEST_DENIED  - already in last column
  1557. +--------------------------------------------------------------------------*/
  1558. static int IFN_Up_Character(FORM * form)
  1559. {
  1560.   if ( (--(form->currow)) < 0 )
  1561.     {
  1562.       form->currow++;
  1563.       return(E_REQUEST_DENIED);
  1564.     }
  1565.   return(E_OK);
  1566. }
  1567.  
  1568. /*---------------------------------------------------------------------------
  1569. |   Facility      :  libnform  
  1570. |   Function      :  static int IFN_Down_Character(FORM * form)
  1571. |   
  1572. |   Description   :  Move one line down. This doesn't cycle through the
  1573. |                    lines of the field.
  1574. |
  1575. |   Return Values :  E_OK              - success
  1576. |                    E_REQUEST_DENIED  - already in last column
  1577. +--------------------------------------------------------------------------*/
  1578. static int IFN_Down_Character(FORM * form)
  1579. {
  1580.   FIELD *field = form->current;
  1581.  
  1582.   if ( (++(form->currow)) == field->drows )
  1583.     {
  1584. #if GROW_IF_NAVIGATE
  1585.       if (!Single_Line_Field(field) && Field_Grown(field,1))
  1586.     return(E_OK);
  1587. #endif
  1588.       --(form->currow);
  1589.       return(E_REQUEST_DENIED);
  1590.     }
  1591.   return(E_OK);
  1592. }
  1593. /*----------------------------------------------------------------------------
  1594.   END of Intra-Field Navigation routines 
  1595.   --------------------------------------------------------------------------*/
  1596.  
  1597. /*----------------------------------------------------------------------------
  1598.   Vertical scrolling helper routines
  1599.   --------------------------------------------------------------------------*/
  1600.  
  1601. /*---------------------------------------------------------------------------
  1602. |   Facility      :  libnform  
  1603. |   Function      :  static int VSC_Generic(FORM *form, int lines)
  1604. |
  1605. |   Description   :  Scroll multi-line field forward (lines>0) or
  1606. |                    backward (lines<0) this many lines.
  1607. |
  1608. |   Return Values :  E_OK              - success 
  1609. |                    E_REQUEST_DENIED  - can't scroll
  1610. +--------------------------------------------------------------------------*/
  1611. static int VSC_Generic(FORM *form, int lines)
  1612. {
  1613.   FIELD *field = form->current;
  1614.   int res = E_REQUEST_DENIED;
  1615.   int rows_to_go = (lines > 0 ? lines : -lines);
  1616.  
  1617.   if (lines > 0)
  1618.     {
  1619.       if ( (rows_to_go + form->toprow) > (field->drows - field->rows) )
  1620.     rows_to_go = (field->drows - field->rows - form->toprow);
  1621.  
  1622.       if (rows_to_go > 0)
  1623.     {
  1624.       form->currow += rows_to_go;
  1625.       form->toprow += rows_to_go;
  1626.       res = E_OK;
  1627.     }
  1628.     }
  1629.   else
  1630.     {
  1631.       if (rows_to_go > form->toprow)
  1632.     rows_to_go = form->toprow;
  1633.       
  1634.       if (rows_to_go > 0)
  1635.     {
  1636.       form->currow -= rows_to_go;
  1637.       form->toprow -= rows_to_go;
  1638.       res = E_OK;
  1639.     }
  1640.     }
  1641.   return(res);
  1642. }
  1643. /*----------------------------------------------------------------------------
  1644.   End of Vertical scrolling helper routines
  1645.   --------------------------------------------------------------------------*/
  1646.  
  1647. /*----------------------------------------------------------------------------
  1648.   Vertical scrolling routines
  1649.   --------------------------------------------------------------------------*/
  1650.  
  1651. /*---------------------------------------------------------------------------
  1652. |   Facility      :  libnform  
  1653. |   Function      :  static int Vertical_Scrolling(
  1654. |                                           int (* const fct) (FORM *),
  1655. |                                           FORM * form)
  1656. |   
  1657. |   Description   :  Performs the generic vertical scrolling routines. 
  1658. |                    This has to check for a multi-line field and to set
  1659. |                    the _NEWTOP flag if scrolling really occured.
  1660. |
  1661. |   Return Values :  Propagated error code from low-level driver calls
  1662. +--------------------------------------------------------------------------*/
  1663. static int Vertical_Scrolling(int (* const fct) (FORM *), FORM * form)
  1664. {
  1665.   int res = E_REQUEST_DENIED;
  1666.  
  1667.   if (!Single_Line_Field(form->current))
  1668.     {
  1669.       res = fct(form);
  1670.       if (res == E_OK)
  1671.     form->current->status |= _NEWTOP;
  1672.     }
  1673.   return(res);
  1674. }
  1675.  
  1676. /*---------------------------------------------------------------------------
  1677. |   Facility      :  libnform  
  1678. |   Function      :  static int VSC_Scroll_Line_Forward(FORM * form)
  1679. |   
  1680. |   Description   :  Scroll multi-line field forward a line
  1681. |
  1682. |   Return Values :  E_OK                - success
  1683. |                    E_REQUEST_DENIED    - no data ahead
  1684. +--------------------------------------------------------------------------*/
  1685. static int VSC_Scroll_Line_Forward(FORM * form)
  1686. {
  1687.   return VSC_Generic(form,1);
  1688. }
  1689.  
  1690. /*---------------------------------------------------------------------------
  1691. |   Facility      :  libnform  
  1692. |   Function      :  static int VSC_Scroll_Line_Backward(FORM * form)
  1693. |   
  1694. |   Description   :  Scroll multi-line field backward a line
  1695. |
  1696. |   Return Values :  E_OK                - success
  1697. |                    E_REQUEST_DENIED    - no data behind
  1698. +--------------------------------------------------------------------------*/
  1699. static int VSC_Scroll_Line_Backward(FORM * form)
  1700. {
  1701.   return VSC_Generic(form,-1);
  1702. }
  1703.  
  1704. /*---------------------------------------------------------------------------
  1705. |   Facility      :  libnform  
  1706. |   Function      :  static int VSC_Scroll_Page_Forward(FORM * form)
  1707. |   
  1708. |   Description   :  Scroll a multi-line field forward a page
  1709. |
  1710. |   Return Values :  E_OK              - success
  1711. |                    E_REQUEST_DENIED  - no data ahead
  1712. +--------------------------------------------------------------------------*/
  1713. static int VSC_Scroll_Page_Forward(FORM * form)
  1714. {
  1715.   return VSC_Generic(form,form->current->rows);
  1716. }
  1717.  
  1718. /*---------------------------------------------------------------------------
  1719. |   Facility      :  libnform  
  1720. |   Function      :  static int VSC_Scroll_Half_Page_Forward(FORM * form)
  1721. |   
  1722. |   Description   :  Scroll a multi-line field forward half a page
  1723. |
  1724. |   Return Values :  E_OK              - success
  1725. |                    E_REQUEST_DENIED  - no data ahead
  1726. +--------------------------------------------------------------------------*/
  1727. static int VSC_Scroll_Half_Page_Forward(FORM * form)
  1728. {
  1729.   return VSC_Generic(form,(form->current->rows + 1)/2);
  1730. }
  1731.  
  1732. /*---------------------------------------------------------------------------
  1733. |   Facility      :  libnform  
  1734. |   Function      :  static int VSC_Scroll_Page_Backward(FORM * form)
  1735. |   
  1736. |   Description   :  Scroll a multi-line field backward a page
  1737. |
  1738. |   Return Values :  E_OK              - success
  1739. |                    E_REQUEST_DENIED  - no data behind
  1740. +--------------------------------------------------------------------------*/
  1741. static int VSC_Scroll_Page_Backward(FORM * form)
  1742. {
  1743.   return VSC_Generic(form, -(form->current->rows));
  1744. }
  1745.  
  1746. /*---------------------------------------------------------------------------
  1747. |   Facility      :  libnform  
  1748. |   Function      :  static int VSC_Scroll_Half_Page_Backward(FORM * form)
  1749. |   
  1750. |   Description   :  Scroll a multi-line field backward half a page
  1751. |
  1752. |   Return Values :  E_OK              - success
  1753. |                    E_REQUEST_DENIED  - no data behind
  1754. +--------------------------------------------------------------------------*/
  1755. static int VSC_Scroll_Half_Page_Backward(FORM * form)
  1756. {
  1757.   return VSC_Generic(form, -((form->current->rows + 1)/2));
  1758. }
  1759. /*----------------------------------------------------------------------------
  1760.   End of Vertical scrolling routines
  1761.   --------------------------------------------------------------------------*/
  1762.  
  1763. /*----------------------------------------------------------------------------
  1764.   Horizontal scrolling helper routines
  1765.   --------------------------------------------------------------------------*/
  1766.  
  1767. /*---------------------------------------------------------------------------
  1768. |   Facility      :  libnform  
  1769. |   Function      :  static int HSC_Generic(FORM *form, int columns)
  1770. |
  1771. |   Description   :  Scroll single-line field forward (columns>0) or
  1772. |                    backward (columns<0) this many columns.
  1773. |
  1774. |   Return Values :  E_OK              - success 
  1775. |                    E_REQUEST_DENIED  - can't scroll
  1776. +--------------------------------------------------------------------------*/
  1777. static int HSC_Generic(FORM *form, int columns)
  1778. {
  1779.   FIELD *field = form->current;
  1780.   int res = E_REQUEST_DENIED;
  1781.   int cols_to_go = (columns > 0 ? columns : -columns);
  1782.  
  1783.   if (columns > 0)
  1784.     {
  1785.       if ((cols_to_go + form->begincol) > (field->dcols - field->cols))
  1786.     cols_to_go = field->dcols - field->cols - form->begincol;
  1787.       
  1788.       if (cols_to_go > 0)
  1789.     {
  1790.       form->curcol   += cols_to_go;
  1791.       form->begincol += cols_to_go;
  1792.       res = E_OK;
  1793.     }
  1794.     }
  1795.   else
  1796.     {
  1797.       if ( cols_to_go > form->begincol )
  1798.     cols_to_go = form->begincol;
  1799.  
  1800.       if (cols_to_go > 0)
  1801.     {
  1802.       form->curcol   -= cols_to_go;
  1803.       form->begincol -= cols_to_go;
  1804.       res = E_OK;
  1805.     }
  1806.     }
  1807.   return(res);
  1808. }
  1809. /*----------------------------------------------------------------------------
  1810.   End of Horizontal scrolling helper routines
  1811.   --------------------------------------------------------------------------*/
  1812.  
  1813. /*----------------------------------------------------------------------------
  1814.   Horizontal scrolling routines
  1815.   --------------------------------------------------------------------------*/
  1816.  
  1817. /*---------------------------------------------------------------------------
  1818. |   Facility      :  libnform  
  1819. |   Function      :  static int Horizontal_Scrolling(
  1820. |                                          int (* const fct) (FORM *),
  1821. |                                          FORM * form)
  1822. |   
  1823. |   Description   :  Performs the generic horizontal scrolling routines. 
  1824. |                    This has to check for a single-line field.
  1825. |
  1826. |   Return Values :  Propagated error code from low-level driver calls
  1827. +--------------------------------------------------------------------------*/
  1828. static int Horizontal_Scrolling(int (* const fct) (FORM *), FORM * form)
  1829. {
  1830.   if (Single_Line_Field(form->current))
  1831.     return fct(form);
  1832.   else
  1833.     return(E_REQUEST_DENIED);
  1834. }
  1835.  
  1836. /*---------------------------------------------------------------------------
  1837. |   Facility      :  libnform  
  1838. |   Function      :  static int HSC_Scroll_Char_Forward(FORM * form)
  1839. |   
  1840. |   Description   :  Scroll single-line field forward a character
  1841. |
  1842. |   Return Values :  E_OK                - success
  1843. |                    E_REQUEST_DENIED    - no data ahead
  1844. +--------------------------------------------------------------------------*/
  1845. static int HSC_Scroll_Char_Forward(FORM *form)
  1846. {
  1847.   return HSC_Generic(form,1);
  1848. }
  1849.  
  1850. /*---------------------------------------------------------------------------
  1851. |   Facility      :  libnform  
  1852. |   Function      :  static int HSC_Scroll_Char_Backward(FORM * form)
  1853. |   
  1854. |   Description   :  Scroll single-line field backward a character
  1855. |
  1856. |   Return Values :  E_OK                - success
  1857. |                    E_REQUEST_DENIED    - no data behind
  1858. +--------------------------------------------------------------------------*/
  1859. static int HSC_Scroll_Char_Backward(FORM *form)
  1860. {
  1861.   return HSC_Generic(form,-1);
  1862. }
  1863.  
  1864. /*---------------------------------------------------------------------------
  1865. |   Facility      :  libnform  
  1866. |   Function      :  static int HSC_Horizontal_Line_Forward(FORM* form)
  1867. |   
  1868. |   Description   :  Scroll single-line field forward a line
  1869. |
  1870. |   Return Values :  E_OK                - success
  1871. |                    E_REQUEST_DENIED    - no data ahead
  1872. +--------------------------------------------------------------------------*/
  1873. static int HSC_Horizontal_Line_Forward(FORM * form)
  1874. {
  1875.   return HSC_Generic(form,form->current->cols);
  1876. }
  1877.  
  1878. /*---------------------------------------------------------------------------
  1879. |   Facility      :  libnform  
  1880. |   Function      :  static int HSC_Horizontal_Half_Line_Forward(FORM* form)
  1881. |   
  1882. |   Description   :  Scroll single-line field forward half a line
  1883. |
  1884. |   Return Values :  E_OK               - success
  1885. |                    E_REQUEST_DENIED   - no data ahead
  1886. +--------------------------------------------------------------------------*/
  1887. static int HSC_Horizontal_Half_Line_Forward(FORM * form)
  1888. {
  1889.   return HSC_Generic(form,(form->current->cols + 1)/2);
  1890. }
  1891.  
  1892. /*---------------------------------------------------------------------------
  1893. |   Facility      :  libnform  
  1894. |   Function      :  static int HSC_Horizontal_Line_Backward(FORM* form)
  1895. |   
  1896. |   Description   :  Scroll single-line field backward a line
  1897. |
  1898. |   Return Values :  E_OK                - success
  1899. |                    E_REQUEST_DENIED    - no data behind
  1900. +--------------------------------------------------------------------------*/
  1901. static int HSC_Horizontal_Line_Backward(FORM * form)
  1902. {
  1903.   return HSC_Generic(form,-(form->current->cols));
  1904. }
  1905.  
  1906. /*---------------------------------------------------------------------------
  1907. |   Facility      :  libnform  
  1908. |   Function      :  static int HSC_Horizontal_Half_Line_Backward(FORM* form)
  1909. |   
  1910. |   Description   :  Scroll single-line field backward half a line
  1911. |
  1912. |   Return Values :  E_OK                - success
  1913. |                    E_REQUEST_DENIED    - no data behind
  1914. +--------------------------------------------------------------------------*/
  1915. static int HSC_Horizontal_Half_Line_Backward(FORM * form)
  1916. {
  1917.   return HSC_Generic(form,-((form->current->cols + 1)/2));
  1918. }
  1919.  
  1920. /*----------------------------------------------------------------------------
  1921.   End of Horizontal scrolling routines
  1922.   --------------------------------------------------------------------------*/
  1923.  
  1924. /*----------------------------------------------------------------------------
  1925.   Helper routines for Field Editing
  1926.   --------------------------------------------------------------------------*/
  1927.  
  1928. /*---------------------------------------------------------------------------
  1929. |   Facility      :  libnform  
  1930. |   Function      :  static bool Is_There_Room_For_A_Line(FORM * form)
  1931. |   
  1932. |   Description   :  Check whether or not there is enough room in the
  1933. |                    buffer to enter a whole line.
  1934. |
  1935. |   Return Values :  TRUE   - there is enough space
  1936. |                    FALSE  - there is not enough space
  1937. +--------------------------------------------------------------------------*/
  1938. INLINE static bool Is_There_Room_For_A_Line(FORM * form)
  1939. {
  1940.   FIELD *field = form->current;
  1941.   char *begin_of_last_line, *s;
  1942.   
  1943.   Synchronize_Buffer(form);
  1944.   begin_of_last_line = Address_Of_Row_In_Buffer(field,(field->drows-1));
  1945.   s  = After_End_Of_Data(begin_of_last_line,field->dcols);
  1946.   return ((s==begin_of_last_line) ? TRUE : FALSE);
  1947. }
  1948.  
  1949. /*---------------------------------------------------------------------------
  1950. |   Facility      :  libnform  
  1951. |   Function      :  static bool Is_There_Room_For_A_Char_In_Line(FORM * form)
  1952. |   
  1953. |   Description   :  Checks whether or not there is room for a new character
  1954. |                    in the current line.
  1955. |
  1956. |   Return Values :  TRUE    - there is room
  1957. |                    FALSE   - there is not enough room (line full)
  1958. +--------------------------------------------------------------------------*/
  1959. INLINE static bool Is_There_Room_For_A_Char_In_Line(FORM * form)
  1960. {
  1961.   int last_char_in_line;
  1962.  
  1963.   wmove(form->w,form->currow,form->current->dcols-1);
  1964.   last_char_in_line  = (int)(winch(form->w) & A_CHARTEXT);
  1965.   wmove(form->w,form->currow,form->curcol);
  1966.   return (((last_char_in_line == form->current->pad) ||
  1967.        is_blank(last_char_in_line)) ? TRUE : FALSE);
  1968. }
  1969.  
  1970. #define There_Is_No_Room_For_A_Char_In_Line(f) \
  1971.   !Is_There_Room_For_A_Char_In_Line(f)
  1972.  
  1973. /*---------------------------------------------------------------------------
  1974. |   Facility      :  libnform  
  1975. |   Function      :  static int Insert_String(
  1976. |                                             FORM * form,
  1977. |                                             int row,
  1978. |                                             char *txt,
  1979. |                                             int  len )
  1980. |   
  1981. |   Description   :  Insert the 'len' characters beginning at pointer 'txt'
  1982. |                    into the 'row' of the 'form'. The insertion occurs
  1983. |                    on the beginning of the row, all other characters are
  1984. |                    moved to the right. After the text a pad character will 
  1985. |                    be inserted to separate the text from the rest. If
  1986. |                    necessary the insertion moves characters on the next
  1987. |                    line to make place for the requested insertion string.
  1988. |
  1989. |   Return Values :  E_OK              - success 
  1990. |                    E_REQUEST_DENIED  -
  1991. |                    E_SYSTEM_ERROR    - system error
  1992. +--------------------------------------------------------------------------*/
  1993. static int Insert_String(FORM *form, int row, char *txt, int len)
  1994.   FIELD  *field    = form->current;
  1995.   char *bp         = Address_Of_Row_In_Buffer(field,row);
  1996.   int datalen      = (int)(After_End_Of_Data(bp,field->dcols) - bp);
  1997.   int freelen      = field->dcols - datalen;
  1998.   int requiredlen  = len+1;
  1999.   char *split;
  2000.   int result = E_REQUEST_DENIED;
  2001.   const char *Space = " ";
  2002.  
  2003.   if (freelen >= requiredlen)
  2004.     {
  2005.       wmove(form->w,row,0);
  2006.       winsnstr(form->w,txt,len);
  2007.       wmove(form->w,row,len);
  2008.       winsnstr(form->w,Space,1);
  2009.       return E_OK;
  2010.     }
  2011.   else
  2012.     { /* we have to move characters on the next line. If we are on the
  2013.      last line this may work, if the field is growable */
  2014.       if ((row == (field->drows - 1)) && Growable(field))
  2015.     {
  2016.       if (!Field_Grown(field,1))
  2017.         return(E_SYSTEM_ERROR);
  2018.       /* !!!Side-Effect : might be changed due to growth!!! */
  2019.       bp = Address_Of_Row_In_Buffer(field,row); 
  2020.     }
  2021.  
  2022.       if (row < (field->drows - 1)) 
  2023.     { 
  2024.       split = After_Last_Whitespace_Character(bp,
  2025.             (int)(Get_Start_Of_Data(bp + field->dcols - requiredlen ,
  2026.                         requiredlen) - bp));
  2027.       /* split points now to the first character of the portion of the
  2028.          line that must be moved to the next line */
  2029.       datalen = (int)(split-bp); /* + freelen has to stay on this line   */
  2030.       freelen = field->dcols - (datalen + freelen); /* for the next line */
  2031.  
  2032.       if ((result=Insert_String(form,row+1,split,freelen))==E_OK) 
  2033.         {
  2034.           wmove(form->w,row,datalen);
  2035.           wclrtoeol(form->w);
  2036.           wmove(form->w,row,0);
  2037.           winsnstr(form->w,txt,len);
  2038.           wmove(form->w,row,len);
  2039.           winsnstr(form->w,Space,1);
  2040.           return E_OK;
  2041.         }
  2042.     }
  2043.       return(result);
  2044.     }
  2045. }
  2046.  
  2047. /*---------------------------------------------------------------------------
  2048. |   Facility      :  libnform  
  2049. |   Function      :  static int Wrapping_Not_Necessary_Or_Wrapping_Ok(
  2050. |                                             FORM * form)
  2051. |   
  2052. |   Description   :  If a character has been entered into a field, it may
  2053. |                    be that wrapping has to occur. This routine checks
  2054. |                    whether or not wrapping is required and if so, performs
  2055. |                    the wrapping.
  2056. |
  2057. |   Return Values :  E_OK              - no wrapping required or wrapping
  2058. |                                        was successfull
  2059. |                    E_REQUEST_DENIED  -
  2060. |                    E_SYSTEM_ERROR    - some system error
  2061. +--------------------------------------------------------------------------*/
  2062. static int Wrapping_Not_Necessary_Or_Wrapping_Ok(FORM * form)
  2063. {
  2064.   FIELD  *field = form->current;
  2065.   int result = E_REQUEST_DENIED;
  2066.   bool Last_Row = ((field->drows - 1) == form->currow);
  2067.  
  2068.   if ( (field->opts & O_WRAP)                     &&  /* wrapping wanted     */
  2069.       (!Single_Line_Field(field))                 &&  /* must be multi-line  */
  2070.       (There_Is_No_Room_For_A_Char_In_Line(form)) &&  /* line is full        */
  2071.       (!Last_Row || Growable(field))               )  /* there are more lines*/
  2072.     {
  2073.       char *bp;
  2074.       char *split;
  2075.       int chars_to_be_wrapped;
  2076.       int chars_to_remain_on_line;
  2077.       if (Last_Row)
  2078.     { /* the above logic already ensures, that in this case the field
  2079.          is growable */
  2080.       if (!Field_Grown(field,1))
  2081.         return E_SYSTEM_ERROR;
  2082.     }
  2083.       bp = Address_Of_Current_Row_In_Buffer(form);
  2084.       Window_To_Buffer(form->w,field);
  2085.       split = After_Last_Whitespace_Character(bp,field->dcols);
  2086.       /* split points to the first character of the sequence to be brought
  2087.          on the next line */
  2088.       chars_to_remain_on_line = (int)(split - bp);
  2089.       chars_to_be_wrapped     = field->dcols - chars_to_remain_on_line;
  2090.       if (chars_to_remain_on_line > 0)
  2091.     {
  2092.       if ((result=Insert_String(form,form->currow+1,split,
  2093.                     chars_to_be_wrapped)) == E_OK)
  2094.         {
  2095.           wmove(form->w,form->currow,chars_to_remain_on_line);
  2096.           wclrtoeol(form->w);
  2097.           if (form->curcol >= chars_to_remain_on_line)
  2098.         {
  2099.           form->currow++;
  2100.           form->curcol -= chars_to_remain_on_line;
  2101.         }
  2102.           return E_OK;
  2103.         }
  2104.     }
  2105.       else
  2106.     return E_OK;
  2107.       if (result!=E_OK)
  2108.     {
  2109.       wmove(form->w,form->currow,form->curcol);
  2110.       wdelch(form->w);
  2111.       Window_To_Buffer(form->w,field);
  2112.       result = E_REQUEST_DENIED;
  2113.     }
  2114.     }
  2115.   else
  2116.     result = E_OK; /* wrapping was not necessary */
  2117.   return(result);
  2118. }
  2119.  
  2120. /*----------------------------------------------------------------------------
  2121.   Field Editing routines
  2122.   --------------------------------------------------------------------------*/
  2123.  
  2124. /*---------------------------------------------------------------------------
  2125. |   Facility      :  libnform  
  2126. |   Function      :  static int Field_Editing(
  2127. |                                    int (* const fct) (FORM *),
  2128. |                                    FORM * form)
  2129. |   
  2130. |   Description   :  Generic routine for field editing requests. The driver
  2131. |                    routines are only called for editable fields, the
  2132. |                    _WINDOW_MODIFIED flag is set if editing occured.
  2133. |                    This is somewhat special due to the overload semantics
  2134. |                    of the NEW_LINE and DEL_PREV requests.
  2135. |
  2136. |   Return Values :  Error code from low level drivers.
  2137. +--------------------------------------------------------------------------*/
  2138. static int Field_Editing(int (* const fct) (FORM *), FORM * form)
  2139. {
  2140.   int res = E_REQUEST_DENIED;
  2141.  
  2142.   /* We have to deal here with the specific case of the overloaded 
  2143.      behaviour of New_Line and Delete_Previous requests.
  2144.      They may end up in navigational requests if we are on the first
  2145.      character in a field. But navigation is also allowed on non-
  2146.      editable fields.
  2147.   */ 
  2148.   if ((fct==FE_Delete_Previous)            && 
  2149.       (form->opts & O_BS_OVERLOAD)         &&
  2150.       First_Position_In_Current_Field(form) )
  2151.     {
  2152.       res = Inter_Field_Navigation(FN_Previous_Field,form);
  2153.     }
  2154.   else
  2155.     {
  2156.       if (fct==FE_New_Line)
  2157.     {
  2158.       if ((form->opts & O_NL_OVERLOAD)         &&
  2159.           First_Position_In_Current_Field(form))
  2160.         {
  2161.           res = Inter_Field_Navigation(FN_Next_Field,form);
  2162.         }
  2163.       else
  2164.         /* FE_New_Line deals itself with the _WINDOW_MODIFIED flag */
  2165.         res = fct(form);
  2166.     }
  2167.       else
  2168.     {
  2169.       /* From now on, everything must be editable */
  2170.       if (form->current->opts & O_EDIT)
  2171.         {
  2172.           res = fct(form);
  2173.           if (res==E_OK)
  2174.         form->status |= _WINDOW_MODIFIED;
  2175.         }
  2176.     }
  2177.     }
  2178.   return res;
  2179. }
  2180.  
  2181. /*---------------------------------------------------------------------------
  2182. |   Facility      :  libnform  
  2183. |   Function      :  static int FE_New_Line(FORM * form)
  2184. |   
  2185. |   Description   :  Perform a new line request. This is rather complex
  2186. |                    compared to other routines in this code due to the 
  2187. |                    rather difficult to understand description in the
  2188. |                    manuals.
  2189. |
  2190. |   Return Values :  E_OK               - success
  2191. |                    E_REQUEST_DENIED   - new line not allowed
  2192. |                    E_SYSTEM_ERROR     - system error
  2193. +--------------------------------------------------------------------------*/
  2194. static int FE_New_Line(FORM * form)
  2195. {
  2196.   FIELD  *field = form->current;
  2197.   char *bp, *t;
  2198.   bool Last_Row = ((field->drows - 1)==form->currow);
  2199.   
  2200.   if (form->status & _OVLMODE) 
  2201.     {
  2202.       if (Last_Row && 
  2203.       (!(Growable(field) && !Single_Line_Field(field))))
  2204.     {
  2205.       if (!(form->opts & O_NL_OVERLOAD))
  2206.         return(E_REQUEST_DENIED);
  2207.       wclrtoeol(form->w);
  2208.       /* we have to set this here, although it is also
  2209.          handled in the generic routine. The reason is,
  2210.          that FN_Next_Field may fail, but the form is
  2211.          definitively changed */
  2212.       form->status |= _WINDOW_MODIFIED;
  2213.       return Inter_Field_Navigation(FN_Next_Field,form);
  2214.     }
  2215.       else 
  2216.     {
  2217.       if (Last_Row && !Field_Grown(field,1))
  2218.         { /* N.B.: due to the logic in the 'if', LastRow==TRUE
  2219.          means here that the field is growable and not
  2220.          a single-line field */
  2221.           return(E_SYSTEM_ERROR);
  2222.         }
  2223.       wclrtoeol(form->w);
  2224.       form->currow++;
  2225.       form->curcol = 0;
  2226.       form->status |= _WINDOW_MODIFIED;
  2227.       return(E_OK);
  2228.     }
  2229.     }
  2230.   else 
  2231.     { /* Insert Mode */
  2232.       if (Last_Row &&
  2233.       !(Growable(field) && !Single_Line_Field(field)))
  2234.     {
  2235.       if (!(form->opts & O_NL_OVERLOAD))
  2236.         return(E_REQUEST_DENIED);
  2237.       return Inter_Field_Navigation(FN_Next_Field,form);
  2238.     }
  2239.       else 
  2240.     {
  2241.       bool May_Do_It = !Last_Row && Is_There_Room_For_A_Line(form);
  2242.       
  2243.       if (!(May_Do_It || Growable(field)))
  2244.         return(E_REQUEST_DENIED);
  2245.       if (!May_Do_It && !Field_Grown(field,1))
  2246.         return(E_SYSTEM_ERROR);
  2247.       
  2248.       bp= Address_Of_Current_Position_In_Buffer(form);
  2249.       t = After_End_Of_Data(bp,field->dcols - form->curcol);
  2250.       wclrtoeol(form->w);
  2251.       form->currow++;
  2252.       form->curcol=0;
  2253.       wmove(form->w,form->currow,form->curcol);
  2254.       winsertln(form->w);
  2255.       waddnstr(form->w,bp,(int)(t-bp));
  2256.       form->status |= _WINDOW_MODIFIED;
  2257.       return E_OK;
  2258.     }
  2259.     }
  2260. }
  2261.  
  2262. /*---------------------------------------------------------------------------
  2263. |   Facility      :  libnform  
  2264. |   Function      :  static int FE_Insert_Character(FORM * form)
  2265. |   
  2266. |   Description   :  Insert blank character at the cursor position
  2267. |
  2268. |   Return Values :  E_OK
  2269. |                    E_REQUEST_DENIED
  2270. +--------------------------------------------------------------------------*/
  2271. static int FE_Insert_Character(FORM * form)
  2272. {
  2273.   FIELD *field = form->current;
  2274.   int result = E_REQUEST_DENIED;
  2275.  
  2276.   if (Check_Char(field->type,(int)C_BLANK,(TypeArgument *)(field->arg)))
  2277.     {
  2278.       bool There_Is_Room = Is_There_Room_For_A_Char_In_Line(form);
  2279.  
  2280.       if (There_Is_Room ||
  2281.       ((Single_Line_Field(field) && Growable(field))))
  2282.     {
  2283.       if (!There_Is_Room && !Field_Grown(field,1))
  2284.         result =  E_SYSTEM_ERROR;
  2285.       else
  2286.         {
  2287.           winsch(form->w,(chtype)C_BLANK);
  2288.           result = Wrapping_Not_Necessary_Or_Wrapping_Ok(form);
  2289.         }
  2290.     }
  2291.     }
  2292.   return result;
  2293. }
  2294.  
  2295. /*---------------------------------------------------------------------------
  2296. |   Facility      :  libnform  
  2297. |   Function      :  static int FE_Insert_Line(FORM * form)
  2298. |   
  2299. |   Description   :  Insert a blank line at the cursor position
  2300. |
  2301. |   Return Values :  E_OK               - success
  2302. |                    E_REQUEST_DENIED   - line can not be inserted
  2303. +--------------------------------------------------------------------------*/
  2304. static int FE_Insert_Line(FORM * form)
  2305. {
  2306.   FIELD *field = form->current;
  2307.   int result = E_REQUEST_DENIED;
  2308.  
  2309.   if (Check_Char(field->type,(int)C_BLANK,(TypeArgument *)(field->arg)))
  2310.     {
  2311.       bool Maybe_Done = (form->currow!=(field->drows-1)) && 
  2312.                     Is_There_Room_For_A_Line(form);
  2313.  
  2314.       if (!Single_Line_Field(field) &&
  2315.       (Maybe_Done || Growable(field)))
  2316.     {
  2317.       if (!Maybe_Done && !Field_Grown(field,1))
  2318.         result = E_SYSTEM_ERROR;
  2319.       else
  2320.         {
  2321.           form->curcol = 0;
  2322.           winsertln(form->w);
  2323.           result = E_OK;
  2324.         }
  2325.     }
  2326.     }
  2327.   return result;
  2328. }
  2329.  
  2330. /*---------------------------------------------------------------------------
  2331. |   Facility      :  libnform  
  2332. |   Function      :  static int FE_Delete_Character(FORM * form)
  2333. |   
  2334. |   Description   :  Delete character at the cursor position
  2335. |
  2336. |   Return Values :  E_OK    - success
  2337. +--------------------------------------------------------------------------*/
  2338. static int FE_Delete_Character(FORM * form)
  2339. {
  2340.   wdelch(form->w);
  2341.   return E_OK;
  2342. }
  2343.  
  2344. /*---------------------------------------------------------------------------
  2345. |   Facility      :  libnform  
  2346. |   Function      :  static int FE_Delete_Previous(FORM * form)
  2347. |   
  2348. |   Description   :  Delete character before cursor. Again this is a rather
  2349. |                    difficult piece compared to others due to the overloading
  2350. |                    semantics of backspace.
  2351. |                    N.B.: The case of overloaded BS on first field position
  2352. |                          is already handled in the generic routine.
  2353. |
  2354. |   Return Values :  E_OK                - success
  2355. |                    E_REQUEST_DENIED    - Character can't be deleted
  2356. +--------------------------------------------------------------------------*/
  2357. static int FE_Delete_Previous(FORM * form)
  2358. {
  2359.   FIELD  *field = form->current;
  2360.   
  2361.   if (First_Position_In_Current_Field(form))
  2362.     return E_REQUEST_DENIED;
  2363.  
  2364.   if ( (--(form->curcol))<0 )
  2365.     {
  2366.       char *this_line, *prev_line, *prev_end, *this_end;
  2367.       
  2368.       form->curcol++;
  2369.       if (form->status & _OVLMODE) 
  2370.     return E_REQUEST_DENIED;
  2371.       
  2372.       prev_line = Address_Of_Row_In_Buffer(field,(form->currow-1));
  2373.       this_line = Address_Of_Row_In_Buffer(field,(form->currow));
  2374.       Synchronize_Buffer(form);
  2375.       prev_end = After_End_Of_Data(prev_line,field->dcols);
  2376.       this_end = After_End_Of_Data(this_line,field->dcols);
  2377.       if ((int)(this_end-this_line) > 
  2378.       (field->cols-(int)(prev_end-prev_line))) 
  2379.     return E_REQUEST_DENIED;
  2380.       wdeleteln(form->w);
  2381.       Adjust_Cursor_Position(form,prev_end);
  2382.       wmove(form->w,form->currow,form->curcol);
  2383.       waddnstr(form->w,this_line,(int)(this_end-this_line));
  2384.     } 
  2385.   else 
  2386.     {
  2387.       wmove(form->w,form->currow,form->curcol);
  2388.       wdelch(form->w);
  2389.     }
  2390.   return E_OK;
  2391. }
  2392.  
  2393. /*---------------------------------------------------------------------------
  2394. |   Facility      :  libnform  
  2395. |   Function      :  static int FE_Delete_Line(FORM * form)
  2396. |   
  2397. |   Description   :  Delete line at cursor position.
  2398. |
  2399. |   Return Values :  E_OK  - success
  2400. +--------------------------------------------------------------------------*/
  2401. static int FE_Delete_Line(FORM * form)
  2402. {
  2403.   form->curcol = 0;
  2404.   wdeleteln(form->w);
  2405.   return E_OK;
  2406. }
  2407.  
  2408. /*---------------------------------------------------------------------------
  2409. |   Facility      :  libnform  
  2410. |   Function      :  static int FE_Delete_Word(FORM * form)
  2411. |   
  2412. |   Description   :  Delete word at cursor position
  2413. |
  2414. |   Return Values :  E_OK               - success
  2415. |                    E_REQUEST_DENIED   - failure
  2416. +--------------------------------------------------------------------------*/
  2417. static int FE_Delete_Word(FORM * form)
  2418. {
  2419.   FIELD  *field = form->current;
  2420.   char   *bp = Address_Of_Current_Row_In_Buffer(form);
  2421.   char   *ep = bp + field->dcols;
  2422.   char   *cp = bp + form->curcol;
  2423.   char *s;
  2424.   
  2425.   Synchronize_Buffer(form);
  2426.   if (is_blank(*cp)) 
  2427.     return E_REQUEST_DENIED; /* not in word */
  2428.  
  2429.   /* move cursor to begin of word and erase to end of screen-line */
  2430.   Adjust_Cursor_Position(form,
  2431.              After_Last_Whitespace_Character(bp,form->curcol)); 
  2432.   wmove(form->w,form->currow,form->curcol);
  2433.   wclrtoeol(form->w);
  2434.  
  2435.   /* skip over word in buffer */
  2436.   s = Get_First_Whitespace_Character(cp,(int)(ep-cp)); 
  2437.   /* to begin of next word    */
  2438.   s = Get_Start_Of_Data(s,(int)(ep - s));
  2439.   if ( (s!=cp) && !is_blank(*s))
  2440.     {
  2441.       /* copy remaining line to window */
  2442.       waddnstr(form->w,s,(int)(s - After_End_Of_Data(s,(int)(ep - s))));
  2443.     }
  2444.   return E_OK;
  2445. }
  2446.  
  2447. /*---------------------------------------------------------------------------
  2448. |   Facility      :  libnform  
  2449. |   Function      :  static int FE_Clear_To_End_Of_Line(FORM * form)
  2450. |   
  2451. |   Description   :  Clear to end of current line.
  2452. |
  2453. |   Return Values :  E_OK   - success
  2454. +--------------------------------------------------------------------------*/
  2455. static int FE_Clear_To_End_Of_Line(FORM * form)
  2456. {
  2457.   wclrtoeol(form->w);
  2458.   return E_OK;
  2459. }
  2460.  
  2461. /*---------------------------------------------------------------------------
  2462. |   Facility      :  libnform  
  2463. |   Function      :  static int FE_Clear_To_End_Of_Form(FORM * form)
  2464. |   
  2465. |   Description   :  Clear to end of form.
  2466. |
  2467. |   Return Values :  E_OK   - success
  2468. +--------------------------------------------------------------------------*/
  2469. static int FE_Clear_To_End_Of_Form(FORM * form)
  2470. {
  2471.   wclrtobot(form->w);
  2472.   return E_OK;
  2473. }
  2474.  
  2475. /*---------------------------------------------------------------------------
  2476. |   Facility      :  libnform  
  2477. |   Function      :  static int FE_Clear_Field(FORM * form)
  2478. |   
  2479. |   Description   :  Clear entire field.
  2480. |
  2481. |   Return Values :  E_OK   - success
  2482. +--------------------------------------------------------------------------*/
  2483. static int FE_Clear_Field(FORM * form)
  2484. {
  2485.   form->currow = form->curcol = 0;
  2486.   werase(form->w);
  2487.   return E_OK;
  2488. }
  2489. /*----------------------------------------------------------------------------
  2490.   END of Field Editing routines 
  2491.   --------------------------------------------------------------------------*/
  2492.  
  2493. /*----------------------------------------------------------------------------
  2494.   Edit Mode routines
  2495.   --------------------------------------------------------------------------*/
  2496.  
  2497. /*---------------------------------------------------------------------------
  2498. |   Facility      :  libnform  
  2499. |   Function      :  static int EM_Overlay_Mode(FORM * form)
  2500. |   
  2501. |   Description   :  Switch to overlay mode.
  2502. |
  2503. |   Return Values :  E_OK   - success
  2504. +--------------------------------------------------------------------------*/
  2505. static int EM_Overlay_Mode(FORM * form)
  2506. {
  2507.   form->status |= _OVLMODE;
  2508.   return E_OK;
  2509. }
  2510.  
  2511. /*---------------------------------------------------------------------------
  2512. |   Facility      :  libnform  
  2513. |   Function      :  static int EM_Insert_Mode(FORM * form)
  2514. |   
  2515. |   Description   :  Switch to insert mode
  2516. |
  2517. |   Return Values :  E_OK   - success
  2518. +--------------------------------------------------------------------------*/
  2519. static int EM_Insert_Mode(FORM * form)
  2520. {
  2521.   form->status &= ~_OVLMODE;
  2522.   return E_OK;
  2523. }
  2524.  
  2525. /*----------------------------------------------------------------------------
  2526.   END of Edit Mode routines 
  2527.   --------------------------------------------------------------------------*/
  2528.  
  2529. /*----------------------------------------------------------------------------
  2530.   Helper routines for Choice Requests
  2531.   --------------------------------------------------------------------------*/
  2532.  
  2533. /*---------------------------------------------------------------------------
  2534. |   Facility      :  libnform  
  2535. |   Function      :  static bool Next_Choice(
  2536. |                                            FIELDTYPE * typ,
  2537. |                                            FIELD * field,
  2538. |                                            TypeArgument *argp)
  2539. |   
  2540. |   Description   :  Get the next field choice. For linked types this is
  2541. |                    done recursively.
  2542. |
  2543. |   Return Values :  TRUE    - next choice successfully retrieved
  2544. |                    FALSE   - couldn't retrieve next choice
  2545. +--------------------------------------------------------------------------*/
  2546. static bool Next_Choice(FIELDTYPE * typ, FIELD *field, TypeArgument *argp)
  2547. {
  2548.   if (!typ || !(typ->status & _HAS_CHOICE)) 
  2549.     return FALSE;
  2550.  
  2551.   if (typ->status & _LINKED_TYPE)
  2552.     {
  2553.       assert(argp);
  2554.       return(
  2555.          Next_Choice(typ->left ,field,argp->left) ||
  2556.          Next_Choice(typ->right,field,argp->right) );
  2557.     } 
  2558.   else
  2559.     {
  2560.       assert(typ->next);
  2561.       return typ->next(field,(void *)argp);
  2562.     }
  2563. }
  2564.  
  2565. /*---------------------------------------------------------------------------
  2566. |   Facility      :  libnform  
  2567. |   Function      :  static bool Previous_Choice(
  2568. |                                                FIELDTYPE * typ,
  2569. |                                                FIELD * field,
  2570. |                                                TypeArgument *argp)
  2571. |   
  2572. |   Description   :  Get the previous field choice. For linked types this
  2573. |                    is done recursively.
  2574. |
  2575. |   Return Values :  TRUE    - previous choice successfully retrieved
  2576. |                    FALSE   - couldn't retrieve previous choice
  2577. +--------------------------------------------------------------------------*/
  2578. static bool Previous_Choice(FIELDTYPE *typ, FIELD *field, TypeArgument *argp)
  2579. {
  2580.   if (!typ || !(typ->status & _HAS_CHOICE)) 
  2581.     return FALSE;
  2582.  
  2583.   if (typ->status & _LINKED_TYPE)
  2584.     {
  2585.       assert(argp);
  2586.       return(
  2587.          Previous_Choice(typ->left ,field,argp->left) ||
  2588.          Previous_Choice(typ->right,field,argp->right));
  2589.     } 
  2590.   else 
  2591.     {
  2592.       assert(typ->prev);
  2593.       return typ->prev(field,(void *)argp);
  2594.     }
  2595. }
  2596. /*----------------------------------------------------------------------------
  2597.   End of Helper routines for Choice Requests
  2598.   --------------------------------------------------------------------------*/
  2599.  
  2600. /*----------------------------------------------------------------------------
  2601.   Routines for Choice Requests
  2602.   --------------------------------------------------------------------------*/
  2603.  
  2604. /*---------------------------------------------------------------------------
  2605. |   Facility      :  libnform  
  2606. |   Function      :  static int CR_Next_Choice(FORM * form)
  2607. |   
  2608. |   Description   :  Get the next field choice.
  2609. |
  2610. |   Return Values :  E_OK              - success
  2611. |                    E_REQUEST_DENIED  - next choice couldn't be retrieved
  2612. +--------------------------------------------------------------------------*/
  2613. static int CR_Next_Choice(FORM * form)
  2614. {
  2615.   FIELD *field = form->current;
  2616.   Synchronize_Buffer(form);
  2617.   return ((Next_Choice(field->type,field,(TypeArgument *)(field->arg))) ? 
  2618.       E_OK : E_REQUEST_DENIED);
  2619. }
  2620.  
  2621. /*---------------------------------------------------------------------------
  2622. |   Facility      :  libnform  
  2623. |   Function      :  static int CR_Previous_Choice(FORM * form)
  2624. |   
  2625. |   Description   :  Get the previous field choice.
  2626. |
  2627. |   Return Values :  E_OK              - success
  2628. |                    E_REQUEST_DENIED  - prev. choice couldn't be retrieved
  2629. +--------------------------------------------------------------------------*/
  2630. static int CR_Previous_Choice(FORM * form)
  2631. {
  2632.   FIELD *field = form->current;
  2633.   Synchronize_Buffer(form);
  2634.   return ((Previous_Choice(field->type,field,(TypeArgument *)(field->arg))) ? 
  2635.       E_OK : E_REQUEST_DENIED);
  2636. }
  2637. /*----------------------------------------------------------------------------
  2638.   End of Routines for Choice Requests
  2639.   --------------------------------------------------------------------------*/
  2640.  
  2641. /*----------------------------------------------------------------------------
  2642.   Helper routines for Field Validations.
  2643.   --------------------------------------------------------------------------*/
  2644.  
  2645. /*---------------------------------------------------------------------------
  2646. |   Facility      :  libnform  
  2647. |   Function      :  static bool Check_Field(
  2648. |                                            FIELDTYPE * typ,
  2649. |                                            FIELD * field,
  2650. |                                            TypeArgument * argp)
  2651. |   
  2652. |   Description   :  Check the field according to its fieldtype and its
  2653. |                    actual arguments. For linked fieldtypes this is done
  2654. |                    recursively.
  2655. |
  2656. |   Return Values :  TRUE       - field is valid
  2657. |                    FALSE      - field is invalid.
  2658. +--------------------------------------------------------------------------*/
  2659. static bool Check_Field(FIELDTYPE *typ, FIELD *field, TypeArgument *argp)
  2660. {
  2661.   if (typ)
  2662.     {
  2663.       if (field->opts & O_NULLOK)
  2664.     {
  2665.       char *bp = field->buf;
  2666.       assert(bp);
  2667.       while(is_blank(*bp))
  2668.         { bp++; }
  2669.       if (*bp == '\0') 
  2670.         return TRUE;
  2671.     }
  2672.  
  2673.       if (typ->status & _LINKED_TYPE)
  2674.     {
  2675.       assert(argp);
  2676.       return( 
  2677.          Check_Field(typ->left ,field,argp->left ) ||
  2678.          Check_Field(typ->right,field,argp->right) );
  2679.     }
  2680.       else 
  2681.     {
  2682.       if (typ->fcheck)
  2683.         return typ->fcheck(field,(void *)argp);
  2684.     }
  2685.     }
  2686.   return TRUE;
  2687. }
  2688.  
  2689. /*---------------------------------------------------------------------------
  2690. |   Facility      :  libnform  
  2691. |   Function      :  bool _nc_Internal_Validation(FORM * form )
  2692. |   
  2693. |   Description   :  Validate the current field of the form.  
  2694. |
  2695. |   Return Values :  TRUE  - field is valid
  2696. |                    FALSE - field is invalid
  2697. +--------------------------------------------------------------------------*/
  2698. NCURSES_EXPORT(bool)
  2699. _nc_Internal_Validation (FORM *form)
  2700. {
  2701.   FIELD *field;
  2702.  
  2703.   field = form->current; 
  2704.   
  2705.   Synchronize_Buffer(form);
  2706.   if ((form->status & _FCHECK_REQUIRED) ||
  2707.       (!(field->opts & O_PASSOK)))
  2708.     {
  2709.       if (!Check_Field(field->type,field,(TypeArgument *)(field->arg)))
  2710.     return FALSE;
  2711.       form->status  &= ~_FCHECK_REQUIRED;
  2712.       field->status |= _CHANGED;
  2713.       Synchronize_Linked_Fields(field);
  2714.     }
  2715.   return TRUE;
  2716. }
  2717. /*----------------------------------------------------------------------------
  2718.   End of Helper routines for Field Validations.
  2719.   --------------------------------------------------------------------------*/
  2720.  
  2721. /*----------------------------------------------------------------------------
  2722.   Routines for Field Validation.
  2723.   --------------------------------------------------------------------------*/
  2724.  
  2725. /*---------------------------------------------------------------------------
  2726. |   Facility      :  libnform  
  2727. |   Function      :  static int FV_Validation(FORM * form)
  2728. |   
  2729. |   Description   :  Validate the current field of the form.
  2730. |
  2731. |   Return Values :  E_OK             - field valid
  2732. |                    E_INVALID_FIELD  - field not valid
  2733. +--------------------------------------------------------------------------*/
  2734. static int FV_Validation(FORM * form)
  2735. {
  2736.   if (_nc_Internal_Validation(form))
  2737.     return E_OK;
  2738.   else
  2739.     return E_INVALID_FIELD;
  2740. }
  2741. /*----------------------------------------------------------------------------
  2742.   End of routines for Field Validation.
  2743.   --------------------------------------------------------------------------*/
  2744.  
  2745. /*----------------------------------------------------------------------------
  2746.   Helper routines for Inter-Field Navigation
  2747.   --------------------------------------------------------------------------*/
  2748.  
  2749. /*---------------------------------------------------------------------------
  2750. |   Facility      :  libnform  
  2751. |   Function      :  static FIELD *Next_Field_On_Page(FIELD * field)
  2752. |   
  2753. |   Description   :  Get the next field after the given field on the current 
  2754. |                    page. The order of fields is the one defined by the
  2755. |                    fields array. Only visible and active fields are
  2756. |                    counted.
  2757. |
  2758. |   Return Values :  Pointer to the next field.
  2759. +--------------------------------------------------------------------------*/
  2760. INLINE static FIELD *Next_Field_On_Page(FIELD * field)
  2761. {
  2762.   FORM  *form = field->form;
  2763.   FIELD **field_on_page = &form->field[field->index];
  2764.   FIELD **first_on_page = &form->field[form->page[form->curpage].pmin];
  2765.   FIELD **last_on_page  = &form->field[form->page[form->curpage].pmax];
  2766.  
  2767.   do
  2768.     {
  2769.       field_on_page = 
  2770.     (field_on_page==last_on_page) ? first_on_page : field_on_page + 1;
  2771.       if (Field_Is_Selectable(*field_on_page))
  2772.     break;
  2773.     } while(field!=(*field_on_page));  
  2774.   return(*field_on_page);
  2775. }
  2776.  
  2777. /*---------------------------------------------------------------------------
  2778. |   Facility      :  libnform  
  2779. |   Function      :  FIELD* _nc_First_Active_Field(FORM * form)
  2780. |   
  2781. |   Description   :  Get the first active field on the current page,
  2782. |                    if there are such. If there are none, get the first
  2783. |                    visible field on the page. If there are also none,
  2784. |                    we return the first field on page and hope the best.
  2785. |
  2786. |   Return Values :  Pointer to calculated field.
  2787. +--------------------------------------------------------------------------*/
  2788. NCURSES_EXPORT(FIELD*)
  2789. _nc_First_Active_Field (FORM * form)
  2790. {
  2791.   FIELD **last_on_page = &form->field[form->page[form->curpage].pmax];
  2792.   FIELD *proposed = Next_Field_On_Page(*last_on_page);
  2793.  
  2794.   if (proposed == *last_on_page)
  2795.     { /* there might be the special situation, where there is no 
  2796.      active and visible field on the current page. We then select
  2797.      the first visible field on this readonly page
  2798.       */
  2799.       if (Field_Is_Not_Selectable(proposed))
  2800.     {
  2801.       FIELD **field = &form->field[proposed->index];
  2802.       FIELD **first = &form->field[form->page[form->curpage].pmin];
  2803.  
  2804.       do
  2805.         {
  2806.           field = (field==last_on_page) ? first : field + 1;
  2807.           if (((*field)->opts & O_VISIBLE))
  2808.         break;
  2809.         } while(proposed!=(*field));
  2810.       
  2811.       proposed = *field;
  2812.  
  2813.       if ((proposed == *last_on_page) && !(proposed->opts&O_VISIBLE))
  2814.         { /* This means, there is also no visible field on the page.
  2815.          So we propose the first one and hope the very best... 
  2816.          Some very clever user has designed a readonly and invisible
  2817.          page on this form.
  2818.            */
  2819.           proposed = *first;
  2820.         }
  2821.     }
  2822.     }
  2823.   return(proposed);
  2824. }
  2825.  
  2826. /*---------------------------------------------------------------------------
  2827. |   Facility      :  libnform  
  2828. |   Function      :  static FIELD *Previous_Field_On_Page(FIELD * field)
  2829. |   
  2830. |   Description   :  Get the previous field before the given field on the 
  2831. |                    current page. The order of fields is the one defined by 
  2832. |                    the fields array. Only visible and active fields are
  2833. |                    counted.
  2834. |
  2835. |   Return Values :  Pointer to the previous field.
  2836. +--------------------------------------------------------------------------*/
  2837. INLINE static FIELD *Previous_Field_On_Page(FIELD * field)
  2838. {
  2839.   FORM  *form   = field->form;
  2840.   FIELD **field_on_page = &form->field[field->index];
  2841.   FIELD **first_on_page = &form->field[form->page[form->curpage].pmin];
  2842.   FIELD **last_on_page  = &form->field[form->page[form->curpage].pmax];
  2843.   
  2844.   do
  2845.     {
  2846.       field_on_page = 
  2847.     (field_on_page==first_on_page) ? last_on_page : field_on_page - 1;
  2848.       if (Field_Is_Selectable(*field_on_page))
  2849.     break;
  2850.     } while(field!=(*field_on_page));
  2851.   
  2852.   return (*field_on_page);
  2853. }
  2854.  
  2855. /*---------------------------------------------------------------------------
  2856. |   Facility      :  libnform  
  2857. |   Function      :  static FIELD *Sorted_Next_Field(FIELD * field)
  2858. |   
  2859. |   Description   :  Get the next field after the given field on the current 
  2860. |                    page. The order of fields is the one defined by the
  2861. |                    (row,column) geometry, rows are major.
  2862. |
  2863. |   Return Values :  Pointer to the next field.
  2864. +--------------------------------------------------------------------------*/
  2865. INLINE static FIELD *Sorted_Next_Field(FIELD * field)
  2866. {
  2867.   FIELD *field_on_page = field;
  2868.  
  2869.   do
  2870.     {
  2871.       field_on_page = field_on_page->snext;
  2872.       if (Field_Is_Selectable(field_on_page))
  2873.     break;
  2874.     } while(field_on_page!=field);
  2875.   
  2876.   return (field_on_page);
  2877. }
  2878.  
  2879. /*---------------------------------------------------------------------------
  2880. |   Facility      :  libnform  
  2881. |   Function      :  static FIELD *Sorted_Previous_Field(FIELD * field)
  2882. |   
  2883. |   Description   :  Get the previous field before the given field on the 
  2884. |                    current page. The order of fields is the one defined 
  2885. |                    by the (row,column) geometry, rows are major.
  2886. |
  2887. |   Return Values :  Pointer to the previous field.
  2888. +--------------------------------------------------------------------------*/
  2889. INLINE static FIELD *Sorted_Previous_Field(FIELD * field)
  2890. {
  2891.   FIELD *field_on_page = field;
  2892.  
  2893.   do
  2894.     {
  2895.       field_on_page = field_on_page->sprev;
  2896.       if (Field_Is_Selectable(field_on_page))
  2897.     break;
  2898.     } while(field_on_page!=field);
  2899.   
  2900.   return (field_on_page);
  2901. }
  2902.  
  2903. /*---------------------------------------------------------------------------
  2904. |   Facility      :  libnform  
  2905. |   Function      :  static FIELD *Left_Neighbour_Field(FIELD * field)
  2906. |   
  2907. |   Description   :  Get the left neighbour of the field on the same line
  2908. |                    and the same page. Cycles through the line.
  2909. |
  2910. |   Return Values :  Pointer to left neighbour field.
  2911. +--------------------------------------------------------------------------*/
  2912. INLINE static FIELD *Left_Neighbour_Field(FIELD * field)
  2913. {
  2914.   FIELD *field_on_page = field;
  2915.  
  2916.   /* For a field that has really a left neighbour, the while clause
  2917.      immediately fails and the loop is left, positioned at the right
  2918.      neighbour. Otherwise we cycle backwards through the sorted fieldlist
  2919.      until we enter the same line (from the right end).
  2920.   */
  2921.   do
  2922.     {
  2923.       field_on_page = Sorted_Previous_Field(field_on_page);
  2924.     } while(field_on_page->frow != field->frow);
  2925.   
  2926.   return (field_on_page);
  2927. }
  2928.  
  2929. /*---------------------------------------------------------------------------
  2930. |   Facility      :  libnform  
  2931. |   Function      :  static FIELD *Right_Neighbour_Field(FIELD * field)
  2932. |   
  2933. |   Description   :  Get the right neighbour of the field on the same line
  2934. |                    and the same page.
  2935. |
  2936. |   Return Values :  Pointer to right neighbour field.
  2937. +--------------------------------------------------------------------------*/
  2938. INLINE static FIELD *Right_Neighbour_Field(FIELD * field)
  2939. {
  2940.   FIELD *field_on_page = field;
  2941.  
  2942.   /* See the comments on Left_Neighbour_Field to understand how it works */
  2943.   do
  2944.     {
  2945.       field_on_page = Sorted_Next_Field(field_on_page);
  2946.     } while(field_on_page->frow != field->frow);
  2947.   
  2948.   return (field_on_page);
  2949. }
  2950.  
  2951. /*---------------------------------------------------------------------------
  2952. |   Facility      :  libnform  
  2953. |   Function      :  static FIELD *Upper_Neighbour_Field(FIELD * field)
  2954. |   
  2955. |   Description   :  Because of the row-major nature of sorting the fields,
  2956. |                    its more difficult to define whats the upper neighbour
  2957. |                    field really means. We define that it must be on a
  2958. |                    'previous' line (cyclic order!) and is the rightmost
  2959. |                    field laying on the left side of the given field. If
  2960. |                    this set is empty, we take the first field on the line.
  2961. |
  2962. |   Return Values :  Pointer to the upper neighbour field.
  2963. +--------------------------------------------------------------------------*/
  2964. static FIELD *Upper_Neighbour_Field(FIELD * field)
  2965. {
  2966.   FIELD *field_on_page = field;
  2967.   int frow = field->frow;
  2968.   int fcol = field->fcol;
  2969.  
  2970.   /* Walk back to the 'previous' line. The second term in the while clause
  2971.      just guarantees that we stop if we cycled through the line because
  2972.      there might be no 'previous' line if the page has just one line.
  2973.   */
  2974.   do
  2975.     {
  2976.       field_on_page = Sorted_Previous_Field(field_on_page);
  2977.     } while(field_on_page->frow==frow && field_on_page->fcol!=fcol);
  2978.   
  2979.   if (field_on_page->frow!=frow)
  2980.     { /* We really found a 'previous' line. We are positioned at the
  2981.          rightmost field on this line */
  2982.       frow = field_on_page->frow; 
  2983.  
  2984.       /* We walk to the left as long as we are really right of the 
  2985.      field. */
  2986.       while(field_on_page->frow==frow && field_on_page->fcol>fcol)
  2987.     field_on_page = Sorted_Previous_Field(field_on_page);
  2988.  
  2989.       /* If we wrapped, just go to the right which is the first field on 
  2990.      the row */
  2991.       if (field_on_page->frow!=frow)
  2992.     field_on_page = Sorted_Next_Field(field_on_page);
  2993.     }
  2994.   
  2995.   return (field_on_page);
  2996. }
  2997.  
  2998. /*---------------------------------------------------------------------------
  2999. |   Facility      :  libnform  
  3000. |   Function      :  static FIELD *Down_Neighbour_Field(FIELD * field)
  3001. |   
  3002. |   Description   :  Because of the row-major nature of sorting the fields,
  3003. |                    its more difficult to define whats the down neighbour
  3004. |                    field really means. We define that it must be on a
  3005. |                    'next' line (cyclic order!) and is the leftmost
  3006. |                    field laying on the right side of the given field. If
  3007. |                    this set is empty, we take the last field on the line.
  3008. |
  3009. |   Return Values :  Pointer to the upper neighbour field.
  3010. +--------------------------------------------------------------------------*/
  3011. static FIELD *Down_Neighbour_Field(FIELD * field)
  3012. {
  3013.   FIELD *field_on_page = field;
  3014.   int frow = field->frow;
  3015.   int fcol = field->fcol;
  3016.  
  3017.   /* Walk forward to the 'next' line. The second term in the while clause
  3018.      just guarantees that we stop if we cycled through the line because
  3019.      there might be no 'next' line if the page has just one line.
  3020.   */
  3021.   do
  3022.     {
  3023.       field_on_page = Sorted_Next_Field(field_on_page);
  3024.     } while(field_on_page->frow==frow && field_on_page->fcol!=fcol);
  3025.  
  3026.   if (field_on_page->frow!=frow)
  3027.     { /* We really found a 'next' line. We are positioned at the rightmost
  3028.          field on this line */
  3029.       frow = field_on_page->frow;
  3030.  
  3031.       /* We walk to the right as long as we are really left of the 
  3032.      field. */
  3033.       while(field_on_page->frow==frow && field_on_page->fcol<fcol)
  3034.     field_on_page = Sorted_Next_Field(field_on_page);
  3035.  
  3036.       /* If we wrapped, just go to the left which is the last field on 
  3037.      the row */
  3038.       if (field_on_page->frow!=frow)
  3039.     field_on_page = Sorted_Previous_Field(field_on_page);
  3040.     }
  3041.   
  3042.   return(field_on_page);
  3043. }
  3044.  
  3045. /*----------------------------------------------------------------------------
  3046.   Inter-Field Navigation routines
  3047.   --------------------------------------------------------------------------*/
  3048.  
  3049. /*---------------------------------------------------------------------------
  3050. |   Facility      :  libnform  
  3051. |   Function      :  static int Inter_Field_Navigation(
  3052. |                                           int (* const fct) (FORM *),
  3053. |                                           FORM * form)
  3054. |   
  3055. |   Description   :  Generic behaviour for changing the current field, the
  3056. |                    field is left and a new field is entered. So the field
  3057. |                    must be validated and the field init/term hooks must
  3058. |                    be called.
  3059. |
  3060. |   Return Values :  E_OK                - success
  3061. |                    E_INVALID_FIELD     - field is invalid
  3062. |                    some other          - error from subordinate call
  3063. +--------------------------------------------------------------------------*/
  3064. static int Inter_Field_Navigation(int (* const fct) (FORM *),FORM *form)
  3065. {
  3066.   int res;
  3067.  
  3068.   if (!_nc_Internal_Validation(form)) 
  3069.     res = E_INVALID_FIELD;
  3070.   else
  3071.     {
  3072.       Call_Hook(form,fieldterm);
  3073.       res = fct(form);
  3074.       Call_Hook(form,fieldinit);
  3075.     }
  3076.   return res;
  3077. }
  3078.  
  3079. /*---------------------------------------------------------------------------
  3080. |   Facility      :  libnform  
  3081. |   Function      :  static int FN_Next_Field(FORM * form)
  3082. |   
  3083. |   Description   :  Move to the next field on the current page of the form
  3084. |
  3085. |   Return Values :  E_OK                 - success
  3086. |                    != E_OK              - error from subordinate call
  3087. +--------------------------------------------------------------------------*/
  3088. static int FN_Next_Field(FORM * form)
  3089. {
  3090.   return _nc_Set_Current_Field(form,
  3091.                    Next_Field_On_Page(form->current));
  3092. }
  3093.  
  3094. /*---------------------------------------------------------------------------
  3095. |   Facility      :  libnform  
  3096. |   Function      :  static int FN_Previous_Field(FORM * form)
  3097. |   
  3098. |   Description   :  Move to the previous field on the current page of the 
  3099. |                    form
  3100. |
  3101. |   Return Values :  E_OK                 - success
  3102. |                    != E_OK              - error from subordinate call
  3103. +--------------------------------------------------------------------------*/
  3104. static int FN_Previous_Field(FORM * form)
  3105. {
  3106.   return _nc_Set_Current_Field(form,
  3107.                    Previous_Field_On_Page(form->current));
  3108. }
  3109.  
  3110. /*---------------------------------------------------------------------------
  3111. |   Facility      :  libnform  
  3112. |   Function      :  static int FN_First_Field(FORM * form)
  3113. |   
  3114. |   Description   :  Move to the first field on the current page of the form
  3115. |
  3116. |   Return Values :  E_OK                 - success
  3117. |                    != E_OK              - error from subordinate call
  3118. +--------------------------------------------------------------------------*/
  3119. static int FN_First_Field(FORM * form)
  3120. {
  3121.   return _nc_Set_Current_Field(form,
  3122.       Next_Field_On_Page(form->field[form->page[form->curpage].pmax]));
  3123. }
  3124.  
  3125. /*---------------------------------------------------------------------------
  3126. |   Facility      :  libnform  
  3127. |   Function      :  static int FN_Last_Field(FORM * form)
  3128. |   
  3129. |   Description   :  Move to the last field on the current page of the form
  3130. |
  3131. |   Return Values :  E_OK                 - success
  3132. |                    != E_OK              - error from subordinate call
  3133. +--------------------------------------------------------------------------*/
  3134. static int FN_Last_Field(FORM * form)
  3135. {
  3136.   return 
  3137.     _nc_Set_Current_Field(form,
  3138.        Previous_Field_On_Page(form->field[form->page[form->curpage].pmin]));
  3139. }
  3140.  
  3141. /*---------------------------------------------------------------------------
  3142. |   Facility      :  libnform  
  3143. |   Function      :  static int FN_Sorted_Next_Field(FORM * form)
  3144. |   
  3145. |   Description   :  Move to the sorted next field on the current page
  3146. |                    of the form.
  3147. |
  3148. |   Return Values :  E_OK            - success
  3149. |                    != E_OK         - error from subordinate call
  3150. +--------------------------------------------------------------------------*/
  3151. static int FN_Sorted_Next_Field(FORM * form)
  3152. {
  3153.   return _nc_Set_Current_Field(form,
  3154.                    Sorted_Next_Field(form->current));
  3155. }
  3156.  
  3157. /*---------------------------------------------------------------------------
  3158. |   Facility      :  libnform  
  3159. |   Function      :  static int FN_Sorted_Previous_Field(FORM * form)
  3160. |   
  3161. |   Description   :  Move to the sorted previous field on the current page
  3162. |                    of the form.
  3163. |
  3164. |   Return Values :  E_OK            - success
  3165. |                    != E_OK         - error from subordinate call
  3166. +--------------------------------------------------------------------------*/
  3167. static int FN_Sorted_Previous_Field(FORM * form)
  3168. {
  3169.   return _nc_Set_Current_Field(form,
  3170.                    Sorted_Previous_Field(form->current));
  3171. }
  3172.  
  3173. /*---------------------------------------------------------------------------
  3174. |   Facility      :  libnform  
  3175. |   Function      :  static int FN_Sorted_First_Field(FORM * form)
  3176. |   
  3177. |   Description   :  Move to the sorted first field on the current page
  3178. |                    of the form.
  3179. |
  3180. |   Return Values :  E_OK            - success
  3181. |                    != E_OK         - error from subordinate call
  3182. +--------------------------------------------------------------------------*/
  3183. static int FN_Sorted_First_Field(FORM * form)
  3184. {
  3185.   return _nc_Set_Current_Field(form,
  3186.           Sorted_Next_Field(form->field[form->page[form->curpage].smax]));
  3187. }
  3188.  
  3189. /*---------------------------------------------------------------------------
  3190. |   Facility      :  libnform  
  3191. |   Function      :  static int FN_Sorted_Last_Field(FORM * form)
  3192. |   
  3193. |   Description   :  Move to the sorted last field on the current page
  3194. |                    of the form.
  3195. |
  3196. |   Return Values :  E_OK            - success
  3197. |                    != E_OK         - error from subordinate call
  3198. +--------------------------------------------------------------------------*/
  3199. static int FN_Sorted_Last_Field(FORM * form)
  3200. {
  3201.   return _nc_Set_Current_Field(form,
  3202.        Sorted_Previous_Field(form->field[form->page[form->curpage].smin]));
  3203. }
  3204.  
  3205. /*---------------------------------------------------------------------------
  3206. |   Facility      :  libnform  
  3207. |   Function      :  static int FN_Left_Field(FORM * form)
  3208. |   
  3209. |   Description   :  Get the field on the left of the current field on the
  3210. |                    same line and the same page. Cycles through the line.
  3211. |
  3212. |   Return Values :  E_OK            - success
  3213. |                    != E_OK         - error from subordinate call
  3214. +--------------------------------------------------------------------------*/
  3215. static int FN_Left_Field(FORM * form)
  3216. {
  3217.   return _nc_Set_Current_Field(form,
  3218.                    Left_Neighbour_Field(form->current));
  3219. }
  3220.  
  3221. /*---------------------------------------------------------------------------
  3222. |   Facility      :  libnform  
  3223. |   Function      :  static int FN_Right_Field(FORM * form)
  3224. |   
  3225. |   Description   :  Get the field on the right of the current field on the
  3226. |                    same line and the same page. Cycles through the line.
  3227. |
  3228. |   Return Values :  E_OK            - success
  3229. |                    != E_OK         - error from subordinate call
  3230. +--------------------------------------------------------------------------*/
  3231. static int FN_Right_Field(FORM * form)
  3232. {
  3233.   return _nc_Set_Current_Field(form,
  3234.                    Right_Neighbour_Field(form->current));
  3235. }
  3236.  
  3237. /*---------------------------------------------------------------------------
  3238. |   Facility      :  libnform  
  3239. |   Function      :  static int FN_Up_Field(FORM * form)
  3240. |   
  3241. |   Description   :  Get the upper neighbour of the current field. This
  3242. |                    cycles through the page. See the comments of the
  3243. |                    Upper_Neighbour_Field function to understand how
  3244. |                    'upper' is defined. 
  3245. |
  3246. |   Return Values :  E_OK            - success
  3247. |                    != E_OK         - error from subordinate call
  3248. +--------------------------------------------------------------------------*/
  3249. static int FN_Up_Field(FORM * form)
  3250. {
  3251.   return _nc_Set_Current_Field(form,
  3252.                    Upper_Neighbour_Field(form->current));
  3253. }
  3254.  
  3255. /*---------------------------------------------------------------------------
  3256. |   Facility      :  libnform  
  3257. |   Function      :  static int FN_Down_Field(FORM * form)
  3258. |   
  3259. |   Description   :  Get the down neighbour of the current field. This
  3260. |                    cycles through the page. See the comments of the
  3261. |                    Down_Neighbour_Field function to understand how
  3262. |                    'down' is defined. 
  3263. |
  3264. |   Return Values :  E_OK            - success
  3265. |                    != E_OK         - error from subordinate call
  3266. +--------------------------------------------------------------------------*/
  3267. static int FN_Down_Field(FORM * form)
  3268. {
  3269.   return _nc_Set_Current_Field(form,
  3270.                    Down_Neighbour_Field(form->current));
  3271. }
  3272. /*----------------------------------------------------------------------------
  3273.   END of Field Navigation routines 
  3274.   --------------------------------------------------------------------------*/
  3275.  
  3276. /*----------------------------------------------------------------------------
  3277.   Helper routines for Page Navigation
  3278.   --------------------------------------------------------------------------*/
  3279.  
  3280. /*---------------------------------------------------------------------------
  3281. |   Facility      :  libnform  
  3282. |   Function      :  int _nc_Set_Form_Page(FORM * form,
  3283. |                                          int page,
  3284. |                                          FIELD * field)
  3285. |   
  3286. |   Description   :  Make the given page nr. the current page and make
  3287. |                    the given field the current field on the page. If
  3288. |                    for the field NULL is given, make the first field on
  3289. |                    the page the current field. The routine acts only
  3290. |                    if the requested page is not the current page.
  3291. |
  3292. |   Return Values :  E_OK                - success
  3293. |                    != E_OK             - error from subordinate call
  3294. +--------------------------------------------------------------------------*/
  3295. NCURSES_EXPORT(int)
  3296. _nc_Set_Form_Page
  3297. (FORM * form, int page, FIELD * field)
  3298. {
  3299.   int res = E_OK;
  3300.  
  3301.   if ((form->curpage!=page))
  3302.     {
  3303.       FIELD *last_field, *field_on_page;
  3304.  
  3305.       werase(Get_Form_Window(form));
  3306.       form->curpage = page;
  3307.       last_field = field_on_page = form->field[form->page[page].smin];
  3308.       do
  3309.     {
  3310.       if (field_on_page->opts & O_VISIBLE)
  3311.         if ((res=Display_Field(field_on_page))!=E_OK) 
  3312.           return(res);
  3313.       field_on_page = field_on_page->snext;
  3314.     } while(field_on_page != last_field);
  3315.  
  3316.       if (field)
  3317.     res = _nc_Set_Current_Field(form,field);
  3318.       else
  3319.     /* N.B.: we don't encapsulate this by Inter_Field_Navigation(),
  3320.        because this is already executed in a page navigation
  3321.        context that contains field navigation 
  3322.      */
  3323.     res = FN_First_Field(form);
  3324.     }
  3325.   return(res);
  3326. }
  3327.  
  3328. /*---------------------------------------------------------------------------
  3329. |   Facility      :  libnform  
  3330. |   Function      :  static int Next_Page_Number(const FORM * form)
  3331. |   
  3332. |   Description   :  Calculate the page number following the current page
  3333. |                    number. This cycles if the highest page number is
  3334. |                    reached.  
  3335. |
  3336. |   Return Values :  The next page number
  3337. +--------------------------------------------------------------------------*/
  3338. INLINE static int Next_Page_Number(const FORM * form)
  3339. {
  3340.   return (form->curpage + 1) % form->maxpage;
  3341. }
  3342.  
  3343. /*---------------------------------------------------------------------------
  3344. |   Facility      :  libnform  
  3345. |   Function      :  static int Previous_Page_Number(const FORM * form)
  3346. |   
  3347. |   Description   :  Calculate the page number before the current page
  3348. |                    number. This cycles if the first page number is
  3349. |                    reached.  
  3350. |
  3351. |   Return Values :  The previous page number
  3352. +--------------------------------------------------------------------------*/
  3353. INLINE static int Previous_Page_Number(const FORM * form)
  3354. {
  3355.   return (form->curpage!=0 ? form->curpage - 1 : form->maxpage - 1);
  3356. }
  3357.  
  3358. /*----------------------------------------------------------------------------
  3359.   Page Navigation routines 
  3360.   --------------------------------------------------------------------------*/
  3361.  
  3362. /*---------------------------------------------------------------------------
  3363. |   Facility      :  libnform  
  3364. |   Function      :  static int Page_Navigation(
  3365. |                                               int (* const fct) (FORM *),
  3366. |                                               FORM * form)
  3367. |   
  3368. |   Description   :  Generic behaviour for changing a page. This means
  3369. |                    that the field is left and a new field is entered.
  3370. |                    So the field must be validated and the field init/term
  3371. |                    hooks must be called. Because also the page is changed,
  3372. |                    the forms init/term hooks must be called also.
  3373. |
  3374. |   Return Values :  E_OK                - success
  3375. |                    E_INVALID_FIELD     - field is invalid
  3376. |                    some other          - error from subordinate call
  3377. +--------------------------------------------------------------------------*/
  3378. static int Page_Navigation(int (* const fct) (FORM *), FORM * form)
  3379. {
  3380.   int res;
  3381.  
  3382.   if (!_nc_Internal_Validation(form)) 
  3383.     res = E_INVALID_FIELD;
  3384.   else
  3385.     {
  3386.       Call_Hook(form,fieldterm);
  3387.       Call_Hook(form,formterm);
  3388.       res = fct(form);
  3389.       Call_Hook(form,forminit);
  3390.       Call_Hook(form,fieldinit);
  3391.     }
  3392.   return res;
  3393. }
  3394.  
  3395. /*---------------------------------------------------------------------------
  3396. |   Facility      :  libnform  
  3397. |   Function      :  static int PN_Next_Page(FORM * form)
  3398. |   
  3399. |   Description   :  Move to the next page of the form
  3400. |
  3401. |   Return Values :  E_OK                - success
  3402. |                    != E_OK             - error from subordinate call
  3403. +--------------------------------------------------------------------------*/
  3404. static int PN_Next_Page(FORM * form)
  3405.   return _nc_Set_Form_Page(form,Next_Page_Number(form),(FIELD *)0);
  3406. }
  3407.  
  3408. /*---------------------------------------------------------------------------
  3409. |   Facility      :  libnform  
  3410. |   Function      :  static int PN_Previous_Page(FORM * form)
  3411. |   
  3412. |   Description   :  Move to the previous page of the form
  3413. |
  3414. |   Return Values :  E_OK              - success
  3415. |                    != E_OK           - error from subordinate call
  3416. +--------------------------------------------------------------------------*/
  3417. static int PN_Previous_Page(FORM * form)
  3418. {
  3419.   return _nc_Set_Form_Page(form,Previous_Page_Number(form),(FIELD *)0);
  3420. }
  3421.  
  3422. /*---------------------------------------------------------------------------
  3423. |   Facility      :  libnform  
  3424. |   Function      :  static int PN_First_Page(FORM * form)
  3425. |   
  3426. |   Description   :  Move to the first page of the form
  3427. |
  3428. |   Return Values :  E_OK              - success
  3429. |                    != E_OK           - error from subordinate call
  3430. +--------------------------------------------------------------------------*/
  3431. static int PN_First_Page(FORM * form)
  3432. {
  3433.   return _nc_Set_Form_Page(form,0,(FIELD *)0);
  3434. }
  3435.  
  3436. /*---------------------------------------------------------------------------
  3437. |   Facility      :  libnform  
  3438. |   Function      :  static int PN_Last_Page(FORM * form)
  3439. |   
  3440. |   Description   :  Move to the last page of the form
  3441. |
  3442. |   Return Values :  E_OK              - success
  3443. |                    != E_OK           - error from subordinate call
  3444. +--------------------------------------------------------------------------*/
  3445. static int PN_Last_Page(FORM * form)
  3446. {
  3447.   return _nc_Set_Form_Page(form,form->maxpage-1,(FIELD *)0);
  3448. }
  3449. /*----------------------------------------------------------------------------
  3450.   END of Field Navigation routines 
  3451.   --------------------------------------------------------------------------*/
  3452.  
  3453. /*----------------------------------------------------------------------------
  3454.   Helper routines for the core form driver.
  3455.   --------------------------------------------------------------------------*/
  3456.  
  3457. /*---------------------------------------------------------------------------
  3458. |   Facility      :  libnform  
  3459. |   Function      :  static int Data_Entry(FORM * form,int c)
  3460. |   
  3461. |   Description   :  Enter character c into at the current position of the
  3462. |                    current field of the form.
  3463. |
  3464. |   Return Values :  E_OK              -
  3465. |                    E_REQUEST_DENIED  -
  3466. |                    E_SYSTEM_ERROR    -
  3467. +--------------------------------------------------------------------------*/
  3468. static int Data_Entry(FORM * form, int c)
  3469. {
  3470.   FIELD  *field = form->current;
  3471.   int result = E_REQUEST_DENIED;
  3472.  
  3473.   if ( (field->opts & O_EDIT) 
  3474. #if FIX_FORM_INACTIVE_BUG
  3475.        && (field->opts & O_ACTIVE) 
  3476. #endif
  3477.        )
  3478.     {
  3479.       if ( (field->opts & O_BLANK) &&
  3480.        First_Position_In_Current_Field(form) &&
  3481.        !(form->status & _FCHECK_REQUIRED) && 
  3482.        !(form->status & _WINDOW_MODIFIED) )
  3483.     werase(form->w);
  3484.  
  3485.       if (form->status & _OVLMODE)
  3486.     {
  3487.       waddch(form->w,(chtype)c);
  3488.     } 
  3489.       else /* no _OVLMODE */ 
  3490.     {
  3491.       bool There_Is_Room = Is_There_Room_For_A_Char_In_Line(form);
  3492.  
  3493.       if (!(There_Is_Room ||
  3494.         ((Single_Line_Field(field) && Growable(field)))))
  3495.           return E_REQUEST_DENIED;
  3496.  
  3497.       if (!There_Is_Room && !Field_Grown(field,1))
  3498.         return E_SYSTEM_ERROR;
  3499.  
  3500.       winsch(form->w,(chtype)c);
  3501.     }
  3502.  
  3503.       if ((result=Wrapping_Not_Necessary_Or_Wrapping_Ok(form))==E_OK)
  3504.     {
  3505.       bool End_Of_Field= (((field->drows-1)==form->currow) &&
  3506.                   ((field->dcols-1)==form->curcol));
  3507.       form->status |= _WINDOW_MODIFIED;
  3508.       if (End_Of_Field && !Growable(field) && (field->opts & O_AUTOSKIP))
  3509.         result = Inter_Field_Navigation(FN_Next_Field,form);
  3510.       else
  3511.         {
  3512.           if (End_Of_Field && Growable(field) && !Field_Grown(field,1))
  3513.         result = E_SYSTEM_ERROR;
  3514.           else
  3515.         {
  3516.           IFN_Next_Character(form);
  3517.           result = E_OK;
  3518.         }
  3519.         }
  3520.     }
  3521.     }
  3522.   return result;
  3523. }
  3524.  
  3525. /* Structure to describe the binding of a request code to a function.
  3526.    The member keycode codes the request value as well as the generic
  3527.    routine to use for the request. The code for the generic routine
  3528.    is coded in the upper 16 Bits while the request code is coded in
  3529.    the lower 16 bits. 
  3530.  
  3531.    In terms of C++ you might think of a request as a class with a
  3532.    virtual method "perform". The different types of request are
  3533.    derived from this base class and overload (or not) the base class
  3534.    implementation of perform.
  3535. */
  3536. typedef struct {
  3537.   int keycode;           /* must be at least 32 bit: hi:mode, lo: key */
  3538.   int (*cmd)(FORM *);    /* low level driver routine for this key     */
  3539. } Binding_Info;
  3540.  
  3541. /* You may see this is the class-id of the request type class */
  3542. #define ID_PN    (0x00000000)    /* Page navigation           */
  3543. #define ID_FN    (0x00010000)    /* Inter-Field navigation    */
  3544. #define ID_IFN   (0x00020000)    /* Intra-Field navigation    */
  3545. #define ID_VSC   (0x00030000)    /* Vertical Scrolling        */
  3546. #define ID_HSC   (0x00040000)    /* Horizontal Scrolling      */
  3547. #define ID_FE    (0x00050000)    /* Field Editing             */
  3548. #define ID_EM    (0x00060000)    /* Edit Mode                 */
  3549. #define ID_FV    (0x00070000)    /* Field Validation          */
  3550. #define ID_CH    (0x00080000)    /* Choice                    */
  3551. #define ID_Mask  (0xffff0000)
  3552. #define Key_Mask (0x0000ffff)
  3553. #define ID_Shft  (16)
  3554.  
  3555. /* This array holds all the Binding Infos */
  3556. static const Binding_Info bindings[MAX_FORM_COMMAND - MIN_FORM_COMMAND + 1] = 
  3557. {
  3558.   { REQ_NEXT_PAGE    |ID_PN  ,PN_Next_Page},
  3559.   { REQ_PREV_PAGE    |ID_PN  ,PN_Previous_Page},
  3560.   { REQ_FIRST_PAGE   |ID_PN  ,PN_First_Page},
  3561.   { REQ_LAST_PAGE    |ID_PN  ,PN_Last_Page},
  3562.   
  3563.   { REQ_NEXT_FIELD   |ID_FN  ,FN_Next_Field},
  3564.   { REQ_PREV_FIELD   |ID_FN  ,FN_Previous_Field},
  3565.   { REQ_FIRST_FIELD  |ID_FN  ,FN_First_Field},
  3566.   { REQ_LAST_FIELD   |ID_FN  ,FN_Last_Field},
  3567.   { REQ_SNEXT_FIELD  |ID_FN  ,FN_Sorted_Next_Field},
  3568.   { REQ_SPREV_FIELD  |ID_FN  ,FN_Sorted_Previous_Field},
  3569.   { REQ_SFIRST_FIELD |ID_FN  ,FN_Sorted_First_Field},
  3570.   { REQ_SLAST_FIELD  |ID_FN  ,FN_Sorted_Last_Field},
  3571.   { REQ_LEFT_FIELD   |ID_FN  ,FN_Left_Field},
  3572.   { REQ_RIGHT_FIELD  |ID_FN  ,FN_Right_Field},
  3573.   { REQ_UP_FIELD     |ID_FN  ,FN_Up_Field},
  3574.   { REQ_DOWN_FIELD   |ID_FN  ,FN_Down_Field},
  3575.   
  3576.   { REQ_NEXT_CHAR    |ID_IFN ,IFN_Next_Character},
  3577.   { REQ_PREV_CHAR    |ID_IFN ,IFN_Previous_Character},
  3578.   { REQ_NEXT_LINE    |ID_IFN ,IFN_Next_Line},
  3579.   { REQ_PREV_LINE    |ID_IFN ,IFN_Previous_Line},
  3580.   { REQ_NEXT_WORD    |ID_IFN ,IFN_Next_Word},
  3581.   { REQ_PREV_WORD    |ID_IFN ,IFN_Previous_Word},
  3582.   { REQ_BEG_FIELD    |ID_IFN ,IFN_Beginning_Of_Field},
  3583.   { REQ_END_FIELD    |ID_IFN ,IFN_End_Of_Field},
  3584.   { REQ_BEG_LINE     |ID_IFN ,IFN_Beginning_Of_Line},
  3585.   { REQ_END_LINE     |ID_IFN ,IFN_End_Of_Line},
  3586.   { REQ_LEFT_CHAR    |ID_IFN ,IFN_Left_Character},
  3587.   { REQ_RIGHT_CHAR   |ID_IFN ,IFN_Right_Character},
  3588.   { REQ_UP_CHAR      |ID_IFN ,IFN_Up_Character},
  3589.   { REQ_DOWN_CHAR    |ID_IFN ,IFN_Down_Character},
  3590.   
  3591.   { REQ_NEW_LINE     |ID_FE  ,FE_New_Line},
  3592.   { REQ_INS_CHAR     |ID_FE  ,FE_Insert_Character},
  3593.   { REQ_INS_LINE     |ID_FE  ,FE_Insert_Line},
  3594.   { REQ_DEL_CHAR     |ID_FE  ,FE_Delete_Character},
  3595.   { REQ_DEL_PREV     |ID_FE  ,FE_Delete_Previous},
  3596.   { REQ_DEL_LINE     |ID_FE  ,FE_Delete_Line},
  3597.   { REQ_DEL_WORD     |ID_FE  ,FE_Delete_Word},
  3598.   { REQ_CLR_EOL      |ID_FE  ,FE_Clear_To_End_Of_Line},
  3599.   { REQ_CLR_EOF      |ID_FE  ,FE_Clear_To_End_Of_Form},
  3600.   { REQ_CLR_FIELD    |ID_FE  ,FE_Clear_Field},
  3601.   
  3602.   { REQ_OVL_MODE     |ID_EM  ,EM_Overlay_Mode},
  3603.   { REQ_INS_MODE     |ID_EM  ,EM_Insert_Mode},
  3604.   
  3605.   { REQ_SCR_FLINE    |ID_VSC ,VSC_Scroll_Line_Forward},
  3606.   { REQ_SCR_BLINE    |ID_VSC ,VSC_Scroll_Line_Backward},
  3607.   { REQ_SCR_FPAGE    |ID_VSC ,VSC_Scroll_Page_Forward},
  3608.   { REQ_SCR_BPAGE    |ID_VSC ,VSC_Scroll_Page_Backward},
  3609.   { REQ_SCR_FHPAGE   |ID_VSC ,VSC_Scroll_Half_Page_Forward},
  3610.   { REQ_SCR_BHPAGE   |ID_VSC ,VSC_Scroll_Half_Page_Backward},
  3611.   
  3612.   { REQ_SCR_FCHAR    |ID_HSC ,HSC_Scroll_Char_Forward},
  3613.   { REQ_SCR_BCHAR    |ID_HSC ,HSC_Scroll_Char_Backward},
  3614.   { REQ_SCR_HFLINE   |ID_HSC ,HSC_Horizontal_Line_Forward},
  3615.   { REQ_SCR_HBLINE   |ID_HSC ,HSC_Horizontal_Line_Backward},
  3616.   { REQ_SCR_HFHALF   |ID_HSC ,HSC_Horizontal_Half_Line_Forward},
  3617.   { REQ_SCR_HBHALF   |ID_HSC ,HSC_Horizontal_Half_Line_Backward},
  3618.   
  3619.   { REQ_VALIDATION   |ID_FV  ,FV_Validation},
  3620.  
  3621.   { REQ_NEXT_CHOICE  |ID_CH  ,CR_Next_Choice},
  3622.   { REQ_PREV_CHOICE  |ID_CH  ,CR_Previous_Choice}
  3623. };
  3624.  
  3625. /*---------------------------------------------------------------------------
  3626. |   Facility      :  libnform  
  3627. |   Function      :  int form_driver(FORM * form,int  c)
  3628. |   
  3629. |   Description   :  This is the workhorse of the forms system. It checks
  3630. |                    to determine whether the character c is a request or
  3631. |                    data. If it is a request, the form driver executes
  3632. |                    the request and returns the result. If it is data
  3633. |                    (printable character), it enters the data into the
  3634. |                    current position in the current field. If it is not
  3635. |                    recognized, the form driver assumes it is an application
  3636. |                    defined command and returns E_UNKNOWN_COMMAND.
  3637. |                    Application defined command should be defined relative
  3638. |                    to MAX_FORM_COMMAND, the maximum value of a request.
  3639. |
  3640. |   Return Values :  E_OK              - success
  3641. |                    E_SYSTEM_ERROR    - system error
  3642. |                    E_BAD_ARGUMENT    - an argument is incorrect
  3643. |                    E_NOT_POSTED      - form is not posted
  3644. |                    E_INVALID_FIELD   - field contents are invalid
  3645. |                    E_BAD_STATE       - called from inside a hook routine
  3646. |                    E_REQUEST_DENIED  - request failed
  3647. |                    E_UNKNOWN_COMMAND - command not known
  3648. +--------------------------------------------------------------------------*/
  3649. NCURSES_EXPORT(int)
  3650. form_driver (FORM * form, int  c)
  3651. {
  3652.   const Binding_Info* BI = (Binding_Info *)0;
  3653.   int res = E_UNKNOWN_COMMAND;
  3654.  
  3655.   if (!form)
  3656.     RETURN(E_BAD_ARGUMENT);
  3657.  
  3658.   if (!(form->field))
  3659.     RETURN(E_NOT_CONNECTED);
  3660.   
  3661.   assert(form->page);
  3662.   
  3663.   if (c==FIRST_ACTIVE_MAGIC)
  3664.     {
  3665.       form->current = _nc_First_Active_Field(form);
  3666.       return E_OK;
  3667.     }
  3668.   
  3669.   assert(form->current && 
  3670.      form->current->buf && 
  3671.      (form->current->form == form)
  3672.     );
  3673.   
  3674.   if ( form->status & _IN_DRIVER )
  3675.     RETURN(E_BAD_STATE);
  3676.  
  3677.   if ( !( form->status & _POSTED ) ) 
  3678.     RETURN(E_NOT_POSTED);
  3679.   
  3680.   if ((c>=MIN_FORM_COMMAND && c<=MAX_FORM_COMMAND) &&
  3681.       ((bindings[c-MIN_FORM_COMMAND].keycode & Key_Mask) == c))
  3682.     BI = &(bindings[c-MIN_FORM_COMMAND]);
  3683.   
  3684.   if (BI)
  3685.     {
  3686.       typedef int (*Generic_Method)(int (* const)(FORM *),FORM *);
  3687.       static const Generic_Method Generic_Methods[] = 
  3688.     {
  3689.       Page_Navigation,         /* overloaded to call field&form hooks */
  3690.       Inter_Field_Navigation,  /* overloaded to call field hooks      */
  3691.       NULL,                    /* Intra-Field is generic              */
  3692.       Vertical_Scrolling,      /* Overloaded to check multi-line      */
  3693.       Horizontal_Scrolling,    /* Overloaded to check single-line     */
  3694.       Field_Editing,           /* Overloaded to mark modification     */
  3695.       NULL,                    /* Edit Mode is generic                */
  3696.       NULL,                    /* Field Validation is generic         */
  3697.       NULL                     /* Choice Request is generic           */
  3698.     };
  3699.       size_t nMethods = (sizeof(Generic_Methods)/sizeof(Generic_Methods[0]));
  3700.       size_t method   = ((BI->keycode & ID_Mask) >> ID_Shft) & 0xffff;
  3701.       
  3702.       if ( (method >= nMethods) || !(BI->cmd) )
  3703.     res = E_SYSTEM_ERROR;
  3704.       else
  3705.     {
  3706.       Generic_Method fct = Generic_Methods[method];
  3707.       if (fct)
  3708.         res = fct(BI->cmd,form);
  3709.       else
  3710.         res = (BI->cmd)(form);
  3711.     }
  3712.     } 
  3713.   else 
  3714.     {
  3715.       if (!(c & (~(int)MAX_REGULAR_CHARACTER)) &&
  3716.       isprint((unsigned char)c) &&                      
  3717.       Check_Char(form->current->type,c,
  3718.              (TypeArgument *)(form->current->arg)))
  3719.     res = Data_Entry(form,c);
  3720.     }
  3721.   _nc_Refresh_Current_Field(form);
  3722.   RETURN(res);
  3723. }
  3724.  
  3725. /*----------------------------------------------------------------------------
  3726.   Field-Buffer manipulation routines.
  3727.   The effects of setting a buffer is tightly coupled to the core of the form
  3728.   driver logic. This is especially true in the case of growable fields.
  3729.   So I don't separate this into an own module. 
  3730.   --------------------------------------------------------------------------*/
  3731.  
  3732. /*---------------------------------------------------------------------------
  3733. |   Facility      :  libnform  
  3734. |   Function      :  int set_field_buffer(FIELD *field,
  3735. |                                         int buffer, char *value)
  3736. |   
  3737. |   Description   :  Set the given buffer of the field to the given value.
  3738. |                    Buffer 0 stores the displayed content of the field.
  3739. |                    For dynamic fields this may grow the fieldbuffers if
  3740. |                    the length of the value exceeds the current buffer
  3741. |                    length. For buffer 0 only printable values are allowed.
  3742. |                    For static fields, the value needs not to be zero ter-
  3743. |                    minated. It is copied up to the length of the buffer.   
  3744. |
  3745. |   Return Values :  E_OK            - success
  3746. |                    E_BAD_ARGUMENT  - invalid argument
  3747. |                    E_SYSTEM_ERROR  - system error
  3748. +--------------------------------------------------------------------------*/
  3749. NCURSES_EXPORT(int)
  3750. set_field_buffer
  3751. (FIELD * field, int buffer, const char * value)
  3752. {
  3753.   char *s, *p;
  3754.   int res = E_OK;
  3755.   unsigned int len;
  3756.  
  3757.   if ( !field || !value || ((buffer < 0)||(buffer > field->nbuf)) )
  3758.     RETURN(E_BAD_ARGUMENT);
  3759.  
  3760.   len  = Buffer_Length(field);
  3761.  
  3762.   if (buffer==0)
  3763.     {
  3764.       const char *v;
  3765.       unsigned int i = 0;
  3766.  
  3767.       for(v=value; *v && (i<len); v++,i++)
  3768.     {
  3769.       if (!isprint((unsigned char)*v))
  3770.         RETURN(E_BAD_ARGUMENT);
  3771.     }
  3772.     }
  3773.  
  3774.   if (Growable(field))
  3775.     {
  3776.       /* for a growable field we must assume zero terminated strings, because
  3777.      somehow we have to detect the length of what should be copied.
  3778.       */
  3779.       unsigned int vlen = strlen(value);
  3780.       if (vlen > len)
  3781.     {
  3782.       if (!Field_Grown(field,
  3783.                (int)(1 + (vlen-len)/((field->rows+field->nrow)*field->cols))))
  3784.         RETURN(E_SYSTEM_ERROR);
  3785.  
  3786.       /* in this case we also have to check, wether or not the remaining
  3787.          characters in value are also printable for buffer 0. */
  3788.       if (buffer==0)
  3789.         {
  3790.           unsigned int i;
  3791.       
  3792.           for(i=len; i<vlen; i++)
  3793.         if (!isprint((unsigned char)value[i]))
  3794.           RETURN(E_BAD_ARGUMENT);
  3795.         }
  3796.       len = vlen;
  3797.     }
  3798.     }
  3799.   
  3800.   p   = Address_Of_Nth_Buffer(field,buffer);
  3801.  
  3802. #if HAVE_MEMCCPY
  3803.   s = memccpy(p,value,0,len);
  3804. #else
  3805.   for(s=(char *)value; *s && (s < (value+len)); s++)
  3806.     p[s-value] = *s;
  3807.   if (s < (value+len))
  3808.     {
  3809.       p[s-value] = *s++;
  3810.       s = p + (s-value);
  3811.     }
  3812.   else 
  3813.     s=(char *)0;
  3814. #endif
  3815.  
  3816.   if (s) 
  3817.     { /* this means, value was null terminated and not greater than the
  3818.      buffer. We have to pad with blanks. Please note that due to memccpy
  3819.      logic s points after the terminating null. */
  3820.       s--; /* now we point to the terminator. */
  3821.       assert(len >= (unsigned int)(s-p));
  3822.       if (len > (unsigned int)(s-p))
  3823.     memset(s,C_BLANK,len-(unsigned int)(s-p));
  3824.     }
  3825.  
  3826.   if (buffer==0)
  3827.     {
  3828.       int syncres;
  3829.       if (((syncres=Synchronize_Field( field ))!=E_OK) && 
  3830.       (res==E_OK))
  3831.     res = syncres;
  3832.       if (((syncres=Synchronize_Linked_Fields(field ))!=E_OK) &&
  3833.       (res==E_OK))
  3834.     res = syncres;
  3835.     }
  3836.   RETURN(res);
  3837. }        
  3838.  
  3839. /*---------------------------------------------------------------------------
  3840. |   Facility      :  libnform  
  3841. |   Function      :  char *field_buffer(const FIELD *field,int buffer)
  3842. |   
  3843. |   Description   :  Return the address of the buffer for the field.
  3844. |
  3845. |   Return Values :  Pointer to buffer or NULL if arguments were invalid.
  3846. +--------------------------------------------------------------------------*/
  3847. NCURSES_EXPORT(char *)
  3848. field_buffer (const FIELD * field, int  buffer)
  3849. {
  3850.   if (field && (buffer >= 0) && (buffer <= field->nbuf))
  3851.     return Address_Of_Nth_Buffer(field,buffer);
  3852.   else
  3853.     return (char *)0;
  3854. }
  3855.  
  3856. /* frm_driver.c ends here */
  3857.